forked from cta-observatory/ctapipe_io_nectarcam
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.cfg
65 lines (55 loc) · 1.64 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_nectarcam
description = ctapipe plugin for reading NectarCam files
long_description = file: README.md
long_description_content_type = text/markdown; charset=UTF-8
author = NectarCAM collaboration
license = BSD-3-Clause
project_urls =
Bug Tracker = https://github.com/cta-observatory/ctapipe_io_nectarcam/issues
Source Code = https://github.com/cta-observatory/ctapipe_io_nectarcam
classifiers =
Development Status :: 3 - Alpha
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.9
[options]
packages = find:
package_dir =
= src
#python_requires = ~=3.8
zip_safe = False
install_requires =
# astropy~=4.2 # VIM : ctapipe also use this so let's use the same version
ctapipe~=0.19
# numpy~=1.22 # numpy is required by ctapipe, so let use the same # VIM : ctapipe also use this so let's use the same version
protozfits # ~=2.0
# tables>=3.7 # VIM : ctapipe also use this so let's use the same version
[options.package_data]
* = resources/*
[options.packages.find]
where = src
exclude =
ctapipe_io_nectarcam._dev_version
[options.extras_require]
tests =
pytest
dev =
setuptools_scm[toml]
all =
%(tests)s
%(dev)s
# copy from LST Chain... No idea what it is doing
[options.entry_points]
ctapipe_io =
NectarCAMEventSource = ctapipe_io_nectarcam:NectarCAMEventSource
[tool:pytest]
minversion = 3.0
addopts = -v
[aliases]
test = pytest
[flake8]
max-line-length = 88