-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
68 lines (60 loc) · 1.67 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
62
63
64
65
66
67
68
[tool.poetry]
name = "nuztf"
version = "2.8.0"
description = "Package for multi-messenger correlation searches with ZTF"
authors = ["Robert Stein <[email protected]>", "Simeon Reusch <[email protected]>", "Jannis Necker <[email protected]>"]
repository = "https://github.com/desy-multimessenger/nuztf"
license = "MIT"
readme = "README.md"
classifiers = [
"Operating System :: OS Independent",
]
[tool.poetry.dependencies]
python = ">=3.10,<3.12"
ampel-ztf = {extras = ["archive"], version = "^0.10.0"}
astropy = ">=5.1,<7.0"
astropy-healpix = ">=0.6,<1.1"
astroquery = "==0.4.6"
backoff = ">=2.0"
geopandas = ">=0.11,<0.15"
lalsuite = "^7.5"
gwemopt = ">=0.0.76,<0.0.85"
healpy = "^1.16.0"
scipy = ">=1.8.1"
ipykernel = ">=6.15.1"
jupyter = ">=1.0.0"
ligo-gracedb = "^2.7.7"
"ligo.skymap" = ">=1,<3"
lxml = ">=4.9.1,<6.0.0"
matplotlib = ">=3"
mocpy = ">=0.11,<0.14"
numpy = ">=1.22.4,<2.0.0"
pandas = ">=1.4.3,<3.0.0"
python-ligo-lw = "^1.8.1"
pyvo = ">=1.3"
requests = ">2.28.1,<2.33.0"
seaborn = ">=0.11.2"
setuptools = ">=65.3"
tqdm = ">=4.64.0"
wget = ">=3.2"
ztfquery = "^1.18.4"
flask = {version = "^2.2.3", optional= true}
slackclient = {version = "^2.9.4", optional = true}
gunicorn = {version = ">=20.1,<23.0", optional = true}
slackeventsapi = {version = "^3.0.1", optional = true}
[tool.poetry.dev-dependencies]
black = "^24.4.2"
coverage = "^7.6"
coveralls = "^4.0.0"
pytest = "^8.3.2"
isort = "^5.12.0"
pre-commit = ">=2.20,<4.0"
[tool.poetry.extras]
slackbot = ["slackclient", "gunicorn", "slackeventsapi", "flask"]
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.black]
line-length = 88
[tool.isort]
profile = "black"