-
Notifications
You must be signed in to change notification settings - Fork 5
/
setup.py
66 lines (65 loc) · 1.7 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
58
59
60
61
62
63
64
65
66
"""Install script for `starry_process`."""
import os
from setuptools import find_packages, setup
setup(
name="starry_process",
author="Rodrigo Luger",
author_email="[email protected]",
url="https://github.com/rodluger/starry_process",
description="interpretable gaussian processes for stellar light curves",
long_description=open("README.md", "r").read(),
long_description_content_type="text/markdown",
license="MIT",
packages=find_packages(),
use_scm_version={
"write_to": os.path.join(
"starry_process", "starry_process_version.py"
),
"write_to_template": '__version__ = "{version}"\n',
},
install_requires=[
"setuptools_scm",
"numpy>=1.19.2,<=1.20.3",
"scipy>=1.5.0",
"pymc3",
"pymc3-ext",
"aesara-theano-fallback>=0.0.4",
"tqdm",
"matplotlib",
],
extras_require={
"app": ["bokeh>=2.2.1"],
"tests": [
"parameterized",
"nose",
"pytest",
"pytest-dependency",
"pytest-env",
"corner",
"starry",
],
"docs": [
"sphinx>=1.7.5",
"pandoc",
"jupyter",
"jupytext",
"ipywidgets",
"nbformat",
"nbconvert",
"corner",
"emcee",
"rtds_action",
"nbsphinx>=0.8.6",
"starry",
"Jinja2==2.11"
],
},
entry_points={
"console_scripts": [
"starry-process=starry_process.app:entry_point [app]"
]
},
setup_requires=["setuptools_scm"],
include_package_data=True,
zip_safe=False,
)