-
Notifications
You must be signed in to change notification settings - Fork 5
/
setup.cfg
65 lines (55 loc) · 1.43 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
62
63
64
65
[metadata]
name = ctapipe_io_magic
description = ctapipe plugin for reading calibrated MAGIC files
long_description = file: README.md
long_description_content_type = text/markdown
author = Ievgen Vovk et al.
author_email = [email protected]
license = BSD 3-Clause
project_urls =
Bug Tracker = https://github.com/cta-observatory/ctapipe_io_magic/issues
Source Code = https://github.com/cta-observatory/ctapipe_io_magic
classifiers =
Development Status :: 4 - Beta
License :: OSI Approved :: BSD License
Intended Audience :: Science/Research
Topic :: Scientific/Engineering :: Astronomy
Topic :: Scientific/Engineering :: Physics
Programming Language :: Python :: 3 :: Only
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11
[options]
packages = find:
python_requires = >=3.8
zip_safe = False
install_requires=
astropy~=5.0
ctapipe~=0.19.0
numpy>=1.22
uproot~=5.0
scipy<1.14
[options.package_data]
* = resources/*
[options.packages.find]
exclude =
ctapipe_io_magic._dev_version
[options.extras_require]
tests =
pytest
dev =
setuptools_scm[toml]
all =
%(tests)s
%(dev)s
[options.entry_points]
ctapipe_io =
MAGICEventSource = ctapipe_io_magic:MAGICEventSource
[tool:pytest]
minversion = 3.0
addopts = -v
[aliases]
test = pytest
[flake8]
max-line-length = 88