-
Notifications
You must be signed in to change notification settings - Fork 6
/
setup.py
executable file
·43 lines (37 loc) · 1.25 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
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
#!/usr/bin/env python
import os
import sys
from setuptools import setup
import PAL2
if sys.argv[-1] == 'publish':
os.system('python setup.py sdist upload')
sys.exit()
setup(
name='PAL2',
version=PAL2.__version__,
author='Justin A. Ellis',
author_email='[email protected]',
url='https://github.com/jellis18/PAL2',
packages=['PAL2'],
package_dir = {'PAL2': 'PAL2'},
scripts=['PAL2/PAL2_run.py', 'PAL2/makeH5file.py'],
zip_safe=False,
license='GPLv3',
description='PTA analysis software',
package_data={'PAL2': ['pulsarDistances.txt',
'ecc_vs_nharm.txt',
'data/mdc_open1/*',
'data/NANOGrav_dfg+12_20120911/*']},
# install_requires=['numpy', 'scipy', 'h5py',
# 'ephem', 'healpy', 'numexpr',
# 'statsmodels',
# 'libstempo>=2.2.2','cython'],
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: GNU General Public License (GPL)',
'Operating System :: OS Independent',
'Programming Language :: Python',
]
)