-
Notifications
You must be signed in to change notification settings - Fork 12
/
pyproject.toml
57 lines (52 loc) · 1.26 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 = "healpix-alchemy"
version = "1.1.0"
description = "SQLAlchemy extensions for HEALPix spatially indexed astronomy data"
readme = "README.md"
authors = ["Leo Singer <leo.singer@ligo.org>"]
license = "BSD-3-clause"
repository = "https://github.com/skyportal/healpix-alchemy"
classifiers = [
"Development Status :: 5 - Production/Stable",
"Topic :: Database",
"Topic :: Scientific/Engineering :: Astronomy"
]
include = [
{ path = "tests", format = "sdist" },
]
[tool.poetry.dependencies]
python = "^3.9"
astropy = "*"
astropy_healpix = "*"
mocpy = ">=0.12.2"
sqlalchemy = ">=1.4"
[tool.poetry.group.dev.dependencies]
astroquery = "*"
numpy = "*"
pandas = "*"
psycopg = { version = "*", extras = ["binary"] }
pytest = "*"
pytest-benchmark = "*"
pytest-cov = "^5.0.0"
pytest-doctestplus = "*"
pytest-postgresql = ">=4.0.0"
[tool.pytest.ini_options]
addopts = "--doctest-glob *.md"
doctest_plus = true
doctest_optionflags = [
"ELLIPSIS",
"FLOAT_CMP"
]
filterwarnings = [
"error::sqlalchemy.exc.SAWarning",
"error::DeprecationWarning",
"error::PendingDeprecationWarning"
]
[tool.coverage.run]
omit = [
"*/conftest.py",
"*/tests/*"
]
[build-system]
requires = ["poetry-core>=1.2.0"]
build-backend = "poetry.core.masonry.api"