-
Notifications
You must be signed in to change notification settings - Fork 39
/
pyproject.toml
98 lines (88 loc) · 1.89 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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
[build-system]
build-backend = "setuptools.build_meta"
requires = [
"setuptools>=61.2",
"setuptools-scm",
]
[project]
name = "astrodendro"
description = "Python package for computation of astronomical dendrograms"
readme.content-type = "text/markdown"
readme.file = "README.md"
license.text = "MIT"
authors = [
{ name = "Thomas Robitaille", email = "[email protected]" },
{ name = "Chris Beaumont" },
{ name = "Adam Ginsburg" },
{ name = "Braden MacDonald" },
{ name = "and Erik Rosolowsky" },
]
requires-python = ">=3.8"
classifiers = [
"Programming Language :: Python :: 3"
]
dynamic = [
"version",
]
dependencies = [
"astropy>=5",
"h5py>=3",
"matplotlib>=3.3",
"numpy>=1.20",
]
[project.optional-dependencies]
docs = [
"aplpy",
"numpydoc",
"sphinx<7",
"sphinx-astropy",
]
test = [
"pytest",
"pytest-cov",
]
[project.urls]
homepage = "https://www.dendrograms.org/"
documentation = "https://dendrograms.readthedocs.io/en/stable/"
repository = "https://github.com/dendrograms/astrodendro"
[tool.setuptools]
zip-safe = false
license-files = [
"LICENSE",
]
include-package-data = false
[tool.setuptools.packages.find]
namespaces = false
[tool.setuptools.package-data]
"astrodendro.tests" = [
"*.npz",
"benchmark_data/*.fits",
]
"astrodendro.io.tests" = [
"data/*",
]
[tool.setuptools_scm]
write_to = "astrodendro/version.py"
[tool.coverage.run]
omit = [
"astrodendro/conftest.py",
"astrodendro/tests/*",
"astrodendro/*/tests/*",
"astrodendro/extern/*",
"astrodendro/version*",
"*/astrodendro/conftest.py",
"*/astrodendro/tests/*",
"*/astrodendro/*/tests/*",
"*/astrodendro/extern/*",
"*/astrodendro/version*",
]
[tool.coverage.report]
exclude_lines = [
"pragma: no cover",
"except ImportError",
"raise AssertionError",
"raise NotImplementedError",
"def main\\(.*\\):",
"pragma: py{ignore_python_version}",
"def _ipython_key_completions_",
]