-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathsetup.py
57 lines (55 loc) · 1.59 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
56
57
from setuptools import setup
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
setup(
name='redback',
version='1.0.2',
description='A Bayesian inference pipeline for electromagnetic transients',
long_description=long_description,
long_description_content_type="text/markdown",
url='https://github.com/nikhil-sarin/redback',
author='Nikhil Sarin, Moritz Huebner',
author_email='nikhil.sarin@su.se',
license='GNU General Public License v3 (GPLv3)',
packages=['redback', 'redback.get_data', 'redback.transient', 'redback.transient_models'],
package_dir={'redback': 'redback', },
package_data={'redback': ['priors/*', 'tables/*', 'plot_styles/*']},
install_requires=[
"numpy<1.26",
"setuptools",
"pandas",
"scipy",
"selenium",
"sncosmo",
"matplotlib",
"astropy",
"afterglowpy",
"extinction",
"requests",
"lxml",
"sphinx-rtd-theme",
"sphinx-tabs",
"bilby",
"regex",
],
extras_require={
'all': [
"nestle",
"sherpa",
"scikit-learn",
"PyQt5",
"lalsuite",
"kilonova-heating-rate",
"redback-surrogates",
"kilonovanet",
"astroquery"
]
},
python_requires=">=3.7",
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent",
],
zip_safe=False
)