-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpyproject.toml
46 lines (39 loc) · 1.01 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
[tool.poetry]
name = "extcats"
version = "2.5.0"
description = "Tools to organize and query astronomical catalogs"
authors = ["Matteo Giomi <[email protected]>"]
maintainers = ["Jakob van Santen <[email protected]>"]
license = "MIT"
readme = "README.md"
repository = "https://github.com/AmpelProject/extcats"
[tool.poetry.dependencies]
python = ">=3.9,<4.0"
pymongo = ">=3.7,<5.0"
healpy = "^1.14.0"
astropy = ">=4.2"
pandas = {version = ">=1.2", optional = true}
tqdm = {version = "^4.58.0", optional = true}
[tool.poetry.dev-dependencies]
pytest = ">=6.2.5"
pytest-cov = ">=2.12.1"
[tool.poetry.extras]
ingest = ["tqdm", "pandas"]
[tool.poetry.group.dev.dependencies]
mypy = "^1.8.0"
types-tqdm = "^4.66.0.20240106"
geojson = "^3.1.0"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.mypy]
show_error_codes = true
packages = ["extcats"]
[[tool.mypy.overrides]]
module = [
"healpy",
"astropy.*",
"pandas",
"geojson",
]
ignore_missing_imports = true