forked from duartegroup/autodE
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
27 lines (24 loc) · 932 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
from setuptools import setup
from Cython.Build import cythonize
from setuptools.extension import Extension
extensions = [Extension('cconf_gen', ['autode/conformers/cconf_gen.pyx'])]
setup(name='autode',
version='1.0.0a2',
packages=['autode',
'autode.conformers',
'autode.pes',
'autode.neb',
'autode.reactions',
'autode.smiles',
'autode.species',
'autode.wrappers',
'autode.transition_states',
'autode.solvent'],
include_package_data=True,
package_data={'autode.transition_states': ['lib/*.txt']},
ext_modules=cythonize(extensions, language_level="3"),
url='https://github.com/duartegroup/autodE',
license='MIT',
author='Tom Young',
author_email='[email protected]',
description='Automated Reaction Profile Generation')