forked from Auto-Mech/mechdriver
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
23 lines (21 loc) · 649 Bytes
/
setup.py
File metadata and controls
23 lines (21 loc) · 649 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
''' Install moldriver
'''
from distutils.core import setup
setup(name='moldriver',
version='0.1.0',
packages=['drivers',
'routines',
'routines.es',
'routines.es._routines',
'routines.es.runner',
'routines.pf',
'routines.pf.ktp',
'routines.pf.thermo',
'routines.pf.messf',
'routines.pf.runner',
'lib',
'lib.amech_io',
'lib.amech_io.parser',
'lib.amech_io.writer',
'lib.filesys',
'lib.reaction'])