forked from cta-observatory/ctapipe
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·97 lines (89 loc) · 3.09 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
#!/usr/bin/env python
# Licensed under a 3-clause BSD style license - see LICENSE.rst
import sys
# import ah_bootstrap
from setuptools import setup, find_packages, Extension
# Get some values from the setup.cfg
from configparser import RawConfigParser
conf = RawConfigParser()
conf.read(['setup.cfg'])
metadata = dict(conf.items('metadata'))
PACKAGENAME = metadata['package_name']
DESCRIPTION = metadata['description']
AUTHOR = metadata['author']
AUTHOR_EMAIL = metadata['author_email']
LICENSE = metadata['license']
URL = metadata['url']
# Get the long description from the package's docstring
__import__(PACKAGENAME)
package = sys.modules[PACKAGENAME]
LONG_DESCRIPTION = package.__doc__
# 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'
]
package.version.update_release_version()
# C Extensions
neighboursum_module = Extension('ctapipe.utils.neighbour_sum_c',
sources=['ctapipe/utils/neighbour_sum_c.cc'])
setup(name=PACKAGENAME,
packages=find_packages(),
version=package.version.get_version(pep440=True),
description=DESCRIPTION,
# these should be minimum list of what is needed to run (note
# don't need to list the sub-dependencies like numpy, since
# astropy already depends on it)
install_requires=[
'astropy>=1.3',
'iminuit',
'numpy',
'pytest_runner',
'scipy>=0.19',
'tables',
'tqdm',
'traitlets',
'psutil',
'matplotlib>=2.0',
'numba',
'pandas',
'bokeh>=1.0.1',
'scikit-learn',
'eventio==0.11.0',
],
tests_require=[
'pytest',
'ctapipe-extra>=0.2.11',
'pyhessio>=2.1',
],
author=AUTHOR,
author_email=AUTHOR_EMAIL,
license=LICENSE,
url=URL,
long_description=LONG_DESCRIPTION,
classifiers=[
'Intended Audience :: Science/Research',
'License :: OSI Approved :: BSD License',
'Programming Language :: C',
'Programming Language :: Cython',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: Implementation :: CPython',
'Topic :: Scientific/Engineering :: Astronomy',
'Development Status :: 3 - Alpha',
],
zip_safe=False,
use_2to3=False,
entry_points=entry_points,
ext_modules=[neighboursum_module],
package_data={
'': ['tools/bokeh/*.yaml', 'tools/bokeh/templates/*.html'],
}
)