forked from cta-observatory/ctapipe
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
executable file
·98 lines (91 loc) · 3.23 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
#!/usr/bin/env python
# Licensed under a 3-clause BSD style license - see LICENSE.rst
# import ah_bootstrap
from setuptools import setup, find_packages
import sys
import os
# pep 517 builds do not have cwd in PATH by default
sys.path.insert(0, os.path.dirname(__file__))
# Get the long and version description from the package's docstring
import ctapipe # noqa
# Define entry points for command-line scripts
# TODO: this shuold be automated (e.g. look for main functions and
# rename _ to -, and prepend 'ctapipe'
entry_points = {}
entry_points["console_scripts"] = [
"ctapipe-info = ctapipe.tools.info:main",
"ctapipe-camdemo = ctapipe.tools.camdemo:main",
"ctapipe-dump-triggers = ctapipe.tools.dump_triggers:main",
"ctapipe-chargeres-extract = ctapipe.tools.extract_charge_resolution:main",
"ctapipe-chargeres-plot = ctapipe.tools.plot_charge_resolution:main",
"ctapipe-dump-instrument=ctapipe.tools.dump_instrument:main",
"ctapipe-event-viewer = ctapipe.tools.bokeh.file_viewer:main",
"ctapipe-display-tel-events = ctapipe.tools.display_events_single_tel:main",
"ctapipe-display-imagesums = ctapipe.tools.display_summed_images:main",
"ctapipe-reconstruct-muons = ctapipe.tools.muon_reconstruction:main",
"ctapipe-display-integration = ctapipe.tools.display_integrator:main",
"ctapipe-display-dl1 = ctapipe.tools.display_dl1:main",
"ctapipe-stage1-process = ctapipe.tools.stage1:main",
]
tests_require = [
"pytest",
"ctapipe-extra @ https://github.com/cta-observatory/ctapipe-extra/archive/v0.3.0.tar.gz",
]
docs_require = [
"sphinx_rtd_theme",
"sphinx_automodapi",
"sphinx",
"nbsphinx",
"numpydoc",
"jupyter",
"notebook",
"travis-sphinx",
"graphviz",
]
ctapipe.version.update_release_version()
setup(
packages=find_packages(),
version=ctapipe.version.get_version(pep440=True),
python_requires=">=3.6",
install_requires=[
"astropy>=3,<5",
"bokeh~=1.0",
"eventio>=1.1.1,<2.0.0a0", # at least 1.1.1, but not 2
"iminuit>=1.3",
"joblib",
"matplotlib~=3.0",
"numba>=0.43",
"numpy~=1.16",
"pandas>=0.24.0",
"psutil",
"scikit-learn",
"scipy~=1.2",
"tables~=3.4",
"tqdm>=4.32",
"traitlets>=4.1,<5.0",
"zstandard",
"h5py", # needed for astropy hdf5 io
],
# here are optional dependencies (as "tag" : "dependency spec")
extras_require={
"all": tests_require + docs_require,
"tests": tests_require,
"docs": docs_require,
},
tests_require=tests_require,
setup_requires=["pytest_runner"],
classifiers=[
"Intended Audience :: Science/Research",
"License :: OSI Approved :: BSD License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: Implementation :: CPython",
"Topic :: Scientific/Engineering :: Astronomy",
"Development Status :: 3 - Alpha",
],
zip_safe=False,
entry_points=entry_points,
package_data={"": ["tools/bokeh/*.yaml", "tools/bokeh/templates/*.html"]},
)