-
Notifications
You must be signed in to change notification settings - Fork 11
/
pyproject.toml
61 lines (53 loc) · 1.62 KB
/
pyproject.toml
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
[build-system]
requires = ["setuptools >= 65", "setuptools_scm[toml]>=6.2"]
build-backend = "setuptools.build_meta"
[project]
name = "ctapipe_io_nectarcam"
description = "ctapipe plugin for reading NectarCam files"
readme = "README.md"
authors = [{name = "NectarCAM collaboration"}]
license = {text = "BSD-3-Clause"}
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",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11"
]
requires-python = ">=3.9"
dependencies = [
"ctapipe~=0.19",
"protozfits",
"scipy==1.11.4",
]
# needed for setuptools_scm, we don't define a static version
dynamic = ["version"]
[project.urls]
"Bug Tracker" = "https://github.com/cta-observatory/ctapipe_io_nectarcam/issues"
"Source Code" = "https://github.com/cta-observatory/ctapipe_io_nectarcam"
[project.optional-dependencies]
test = [
"pytest",
"pytest-cov",
"pytest-xdist",
]
dev = [
"setuptools_scm",
]
# we can use self-references to simplify all
all = [
"ctapipe_io_nectarcam[test,dev]",
]
[project.entry-points.ctapipe_io]
NectarCAMEventSource = "ctapipe_io_nectarcam:NectarCAMEventSource"
[tool.setuptools.packages.find]
where = ["src"]
exclude = ["ctapipe_io_nectarcam._dev_version"]
[tool.setuptools.package-data]
"*" = ["resources/*"]
[tool.setuptools_scm]
write_to = "src/ctapipe_io_nectarcam/_version.py"