-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
52 lines (47 loc) · 1.24 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
[tool.poetry]
name = "fpbot"
version = "1.1.3"
description = "Forced photometry pipeline for the Zwicky Transient Facility"
authors = ["simeonreusch <[email protected]>"]
maintainers = ["Simeon Reusch <[email protected]>"]
license = "BSD-3-Clause"
repository = "https://github.com/simeonreusch/fpbot"
readme = "README.md"
classifiers = [
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.11",
]
[tool.poetry.scripts]
fp = "forcedphotometry:run"
fpbulk = "bulk:main"
[tool.poetry.dependencies]
python = ">=3.10,<4"
astropy = ">=5.1,<7.0"
backoff = "^2.1.2"
fastapi = ">=0.79,<0.112"
keyring = ">=23.7,<26.0"
matplotlib = "^3.5.2"
numpy = ">=1.23.1,<3.0.0"
pandas = ">=1.4.3,<3.0.0"
pymongo = "^4.2.0"
requests = "^2.28.1"
scipy = "^1.8.1"
sfdmap = "^0.1.1"
slackclient = "^2.9.4"
SQLAlchemy = ">=1.4.39,<3.0.0"
tdqm = "^0.0.1"
ztfquery = "^1.18.4"
mypy = ">=0.991,<1.11"
ztflc = "^0.3.1"
[tool.poetry.dev-dependencies]
coveralls = "^3.3.1"
pytest = "^8.2.2"
[tool.poetry.extras]
slack = ["slackclient"]
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.black]
line-length = 88