forked from Auto-Mech/autochem
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
28 lines (26 loc) · 868 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
28
""" Install automol
"""
from distutils.core import setup
setup(name='automol',
version='0.1.0',
packages=['automol',
'automol.cart',
'automol.convert',
'automol.create',
'automol.dict_',
'automol.graph',
'automol.zmatrix',
'automol.formula',
'automol.mult',
'automol.tests',
'autoread',
'autoread.zmatrix',
'autowrite',
'phydat',
'transformations'],
package_dir={'automol': 'automol',
'autoread': 'autoread',
'autowrite': 'autowrite',
'phydat': 'phydat',
'transformations': 'transformations'},
package_data={'automol': ['tests/data/*.txt']})