forked from pyfusion/pyfusion
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
22 lines (21 loc) · 1.16 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
from distutils.core import setup
import os, glob
execfile(os.path.join('pyfusion','version.py'))
setup(name='pyfusion',
version=__version__,
packages=['pyfusion'],
install_requires=['numpy', 'sqlalchemy'],
package_data={'pyfusion':['pyfusion.cfg',
os.path.join('acquisition', 'DSV', '*.dat'),
os.path.join('acquisition', 'LHD', '*.npz'),
os.path.join('acquisition', 'MDSPlus', '*.cfg'),
os.path.join('acquisition', 'MDSPlus', 'test_tree', '*'),
os.path.join('conf', '*.cfg'),
os.path.join('devices', '*', '*.cfg'),
os.path.join('documentation', 'README'),
os.path.join('documentation', 'Makefile'),
os.path.join('documentation', '*.rst'),
os.path.join('documentation', '*', '*.rst'),
os.path.join('documentation', '*', '*', '*.rst'),
os.path.join('test', '*.cfg')]}
)