-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
80 lines (69 loc) · 1.73 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
69
70
71
72
73
74
75
76
77
78
79
80
[build-system]
requires = [
"setuptools",
"setuptools_scm",
"wheel",
"extension-helpers",
"numpy",
"cython>=0.30",
]
build-backend = "setuptools.build_meta"
[project]
name = "sbsearch"
description = "Toolkit to find small Solar System bodies in astronomical surveys."
keywords = [
"astronomy",
"astrophysics",
"planetary",
"asteroid",
"comet",
"space",
"science",
]
readme = "README.md"
authors = [{ name = "Michael S. P. Kelley", email = "[email protected]" }]
license = { text = "BSD 3-Clause License" }
requires-python = ">=3.8"
dependencies = [
"numpy>=1.17.0,<2",
"astropy>=4.3",
"astroquery>=0.4.5",
"sbpy>0.3.0",
"sqlalchemy>=2.0",
"cython>=0.30",
"extension-helpers",
]
dynamic = ["version"]
[project.urls]
Repository = "https://github.com/Small-Bodies-Node/sbsearch"
[project.optional-dependencies]
recommended = ["psycopg2-binary", "matplotlib", "spherical_geometry"]
test = [
"pytest>=4.6",
"pytest-astropy",
"pytest-xdist",
"coverage",
"testing.postgresql",
]
docs = ["sphinx", "sphinx-automodapi", "numpydoc", "matplotlib"]
[tool.setuptools]
zip-safe = false
include-package-data = false
[tool.setuptools.packages.find]
[tool.setuptools_scm]
write_to = "sbsearch/version.py"
[tool.pytest.ini_options]
minversion = 4.6
addopts = "--doctest-rst --cov=sbsearch --cov-report=html"
doctest_plus = "enabled"
remote_data_strict = true
doctest_norecursedirs = ["*/setup_package.py"]
[tool.coverage.run]
omit = ["sbsearch/test/*", "sbsearch/version*", "sbsearch/setup_package.py"]
[tool.coverage.report]
exclude_lines = [
"pragma: no cover",
# Don't complain if tests don't hit assertions
"raise AssertionError",
"raise NotImplementedError",
]