forked from MickaelRigault/ztfquery
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
40 lines (34 loc) · 1.06 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
[tool.poetry]
name = "ztfquery"
version = "1.24.8"
description = "Python package to access ZTF data"
authors = ["Mickael Rigault <m.rigault@ipnl.in2p3.fr>", "Simeon Reusch <simeon.reusch@desy.de>"]
maintainers = ["Mickael Rigault <m.rigault@ipnl.in2p3.fr>", "Simeon Reusch <simeon.reusch@desy.de>"]
license = "BSD-3-Clause"
repository = "https://github.com/mickaelrigault/ztfquery"
readme = "README.md"
classifiers = [
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
]
keywords = ["astrophysics", "science", "astronomy", "ZTF", "IPAC"]
[tool.poetry.dependencies]
python = "^3.8"
pandas = "^1.5.3"
numpy = "^1.24.2"
astropy = "^5.2.1"
matplotlib = "^3.7.0"
requests = "^2.28.2"
dask = "^2023.2.0"
[tool.poetry.group.dev.dependencies]
pytest = "^7.2.1"
coveralls = "^3.3.1"
cryptography = "^39.0.1"
[tool.poetry.extras]
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.black]
line-length = 88