-
Notifications
You must be signed in to change notification settings - Fork 67
/
setup.py
55 lines (50 loc) · 1.78 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
44
45
46
47
48
49
50
51
52
53
54
55
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from setuptools import setup
with open("README.md", encoding="utf-8") as readme_file:
readme = readme_file.read()
requirements = [
"numpy>=1.16.3",
"scipy>=1.2.0",
"ephem>=3.7.6.0",
"healpy>=1.14.0",
"scikit-sparse>=0.4.5",
"pint-pulsar>=0.8.3",
"libstempo>=2.4.4",
]
test_requirements = []
setup(
name="enterprise-pulsar",
description="ENTERPRISE (Enhanced Numerical Toolbox Enabling a Robust PulsaR Inference SuitE)",
long_description=readme,
long_description_content_type="text/markdown",
author="Justin A. Ellis",
author_email="[email protected]",
url="https://github.com/nanograv/enterprise",
packages=["enterprise", "enterprise.signals"],
package_dir={"enterprise": "enterprise"},
include_package_data=True,
package_data={"enterprise": ["datafiles/*", "datafiles/ephemeris/*", "datafiles/ng9/*", "datafiles/mdc_open1/*"]},
python_requires=">=3.8, <3.13",
install_requires=requirements,
license="MIT license",
zip_safe=False,
keywords="enterprise",
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Scientific/Engineering :: Astronomy",
"Topic :: Scientific/Engineering :: Physics",
],
test_suite="tests",
tests_require=test_requirements,
)