-
Notifications
You must be signed in to change notification settings - Fork 7
/
pyproject.toml
57 lines (50 loc) · 1.52 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
[tool.poetry]
name = "flarestack"
version = "2.4.8"
description = "Package for unbinned likelihood analysis of physics data"
authors = ["Robert Stein <[email protected]>"]
maintainers = [
"Robert Stein <[email protected]>",
"Jannis Necker <[email protected]>",
"Massimiliano Lincetto <[email protected]>"
]
license = "MIT"
repository = "https://github.com/icecube/flarestack"
documentation = "https://flarestack.readthedocs.io/en/latest/?badge=latest"
keywords = ["astroparticle physics", "science", "unbinned likelihood", "IceCube"]
readme = "README.md"
classifiers = [
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
]
[tool.poetry.dependencies]
python = ">=3.9, <3.12"
astropy = ">=5.1,<7.0"
black = ">=23,<25"
coveralls = ">=3.3.1,<5.0.0"
healpy = "^1.16.1"
jupyter = "^1.0.0"
matplotlib = "^3.5.2"
numexpr = "^2.8.3"
numpy = "^1.23.1"
scipy = "^1.9.0"
sphinx = "^5.1.1"
urllib3 = "2.3.0"
[tool.poetry.dev-dependencies]
[tool.poetry.group.docs]
optional = true
[tool.poetry.group.docs.dependencies]
Sphinx = "^5.1.1"
sphinx-rtd-theme = ">=1,<3"
myst-parser = "^0.18.0"
nbsphinx = ">=0.8.9,<0.10.0"
myst-nb = ">=0.16,<0.18"
[tool.poetry.group.dev.dependencies]
mypy = "^1.5.1"
[build-system]
requires = ["poetry-core>=1.2.0"]
build-backend = "poetry.core.masonry.api"