-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
70 lines (65 loc) · 2.39 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
import setuptools
import os
with open("README.rst", "r", encoding="utf-8") as f:
long_description = f.read()
with open(os.path.join("plenoirf", "version.py")) as f:
txt = f.read()
last_line = txt.splitlines()[-1]
version_string = last_line.split()[-1]
version = version_string.strip("\"'")
setuptools.setup(
name="plenoirf_cherenkov-plenoscope-project",
version=version,
description="Estimate Portal's instrument response function",
long_description=long_description,
long_description_content_type="text/x-rst",
url="https://github.com/cherenkov-plenoscope/plenoirf",
author="Sebastian Achim Mueller",
author_email="sebastian-achim.mueller@mpi-hd.mpg.de",
packages=[
"plenoirf",
"plenoirf.bookkeeping",
"plenoirf.configuration",
"plenoirf.event_table",
"plenoirf.ground_grid",
"plenoirf.analysis",
"plenoirf.other_instruments",
"plenoirf.reconstruction",
"plenoirf.production",
"plenoirf.summary",
"plenoirf.features",
"plenoirf.seeding",
"plenoirf.logging",
],
install_requires=[
"xmltodict",
"sympy>=1.11.1",
"scikit-image",
"un_bound_histogram>=0.0.1",
"cosmic_fluxes",
"corsika_primary>=2.3.3",
"atmospheric_cherenkov_response_cherenkov-plenoscope-project>=0.1.3",
"json_line_logger>=0.0.3",
"propagate_uncertainties_sebastian-achim-mueller>=0.2.3",
"shapely",
"binning_utils_sebastian-achim-mueller",
"json_numpy_sebastian-achim-mueller",
"confusion_matrix_sebastian-achim-mueller>=0.0.4",
"flux_sensitivity_sebastian-achim-mueller>=0.0.1",
"rename_after_writing>=0.0.6",
"gitpython>=3.1.40",
"plenoptics_cherenkov-plenoscope-project>=0.0.8",
"gamma_ray_reconstruction_cherenkov-plenoscope-project>=0.0.5",
"magnetic_deflection_cherenkov-plenoscope-project>=0.14.10",
],
package_data={"plenoirf": [os.path.join("summary", "scripts", "*")]},
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Natural Language :: English",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Physics",
"Topic :: Scientific/Engineering :: Astronomy",
],
)