forked from cta-observatory/nectarchain
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
51 lines (45 loc) · 1.32 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
[build-system]
requires = ["setuptools >= 65", "setuptools_scm[toml]>=6.2"]
build-backend = "setuptools.build_meta"
[project]
name = "nectarchain"
description = "Analysis chain for the CTA MSTN NectarCAM prototype"
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.8",
]
requires-python = "~=3.8"
dependencies = [
"astropy~=4.2",
"ctapipe~=0.12",
"ctapipe-io-nectarcam",
"numpy~=1.22",
"protozfits~=2.0",
"tables>=3.7",
]
dynamic = ["version"]
[project.readme]
file = "README.md"
content-type = "text/markdown; charset=UTF-8"
[project.urls]
"Bug Tracker" = "https://github.com/cta-observatory/nectarchain/issues"
"Source Code" = "https://github.com/cta-observatory/nectarchain"
[project.optional-dependencies]
tests = ["pytest"]
dev = ["setuptools_scm"]
all = [
"pytest",
"setuptools_scm",
]
[tool.setuptools.packages.find]
where = ["src"]
exclude = ["nectarchain._dev_version"]
[tool.setuptools_scm]
write_to = "src/nectarchain/_version.py"