-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpyproject.toml
45 lines (41 loc) · 1.14 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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "pybkgmodel"
version = "1.0.0"
authors = [
{ name="Marcel Strzys", email="[email protected]" },
{ name="Ievgen Vovk", email="[email protected]" },
{ name="Moritz Huetten", email="[email protected]" },
]
description = "Background model construction tool for Imaging Atmospheric Cherenkov telescopes"
readme = "README.md"
license = { file="LICENSE" }
requires-python = ">=3.8"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU GPLv3",
"Operating System :: OS Independent",
]
dependencies = [
"astropy==5.0.2",
"matplotlib==3.5.1",
"numpy==1.21.5",
"pandas==1.3.5",
"progressbar2==4.0.0",
"regions==0.5",
"scipy==1.8.0",
"uproot==4.2.3",
"PyYAML==5.3.1"
]
[project.optional-dependencies]
"tests" = [
"pytest",
"pytest-cov",
]
[project.urls]
"Homepage" = "https://github.com/cta-observatory/pybkgmodel/-"
"Bug Tracker" = "https://github.com/cta-observatory/pybkgmodel/-/issues"
[project.scripts]
bkgmodel = "pybkgmodel.scripts.bkgmodel:main"