forked from nanograv/enterprise_extensions
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
35 lines (33 loc) · 1.53 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
from setuptools import setup
# Extract version
def get_version():
with open('enterprise_extensions/models.py') as f:
for line in f.readlines():
if "__version__" in line:
return line.split('"')[1]
setup(
name='enterprise_extensions',
version=get_version(),
description='Extensions, model shortcuts, and utilities for the enterprise PTA analysis framework.',
long_description="See: `github.com/stevertaylor/enterprise_extensions <https://github.com/stevertaylor/enterprise_extensions>`_." ,
classifiers=[
'Topic :: Scientific/Engineering :: Astronomy',
'Topic :: Scientific/Engineering :: Physics',
'Topic :: Scientific/Engineering :: Mathematics',
'Intended Audience :: Science/Research',
'Programming Language :: Python :: 2.7',
'Topic :: Software Development :: Libraries :: Python Modules',
],
keywords='gravitational-wave, black-hole binary, pulsar-timing arrays',
url='https://github.com/stevertaylor/enterprise_extensions',
author='Stephen R. Taylor, Paul T. Baker, Jeffrey S. Hazboun, Sarah Vigeland',
author_email='[email protected]',
license='MIT',
packages=['enterprise_extensions',
'enterprise_extensions.frequentist',
'enterprise_extensions.electromagnetic'],
package_data={'enterprise_extensions.electromagnetic': ['ACE_SWEPAM_daily_proton_density_1998_2018_MJD_cm-3.txt']},
install_requires=['numpy','scipy','enterprise'],
include_package_data=True,
zip_safe=False,
)