-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.cfg
61 lines (54 loc) · 1.48 KB
/
setup.cfg
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
[metadata]
name = dl2_tools
version = 0.0.2
author = Georg Schwefer
author_email = georg.schwefer
description = A package for handling dl2 ctapipe output and producing dl3 data from it.
long_description = file: README.md
long_description_content_type = text/markdown
license = BSD-3-Clause
license_file = LICENSE
url = https://github.com/mpi-astronomy/mpia-python-template
project_urls =
Bug Tracker = https://github.com/mpi-astronomy/mpia-python-template/issues
Source Code = https://github.com/mpi-astronomy/mpia-python-template
classifiers =
Programming Language :: Python :: 3
License :: OSI Approved :: BSD License
Operating System :: OS Independent
[options]
package_dir =
=src
packages = find:
python_requires= >=3.10
# Example of how to add dependencies:
install_requires =
importlib-metadata >= 2.0 ; python_version < "3.8"
pyirf @ git+https://github.com/gschwefer/pyirf.git@dl2_tools_compatible_edisp_bug_fix
ctapipe
numpy
scipy
gammapy
ctapipe >= 0.19
dill
[options.packages.find]
where = src
[options.package_data]
dl2_tools =
data/dl2_files
[options.extras_require]
docs =
sphinx
sphinx-automodapi
numpydoc
test =
pytest
pytest-doctestplus
flake8
codecov
pytest-cov
[options.entry_points]
console_scripts =
irf-maker = dl2_tools.tools.irf_tool:main
percentile-cut-maker = dl2_tools.tools.percentile_cut_tool:main
ps-sensitivity-cut-optimizer = dl2_tools.tools.ps_sensitivity_cut_optimizer_tool:main