-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpyproject.toml
109 lines (96 loc) · 2.46 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
99
100
101
102
103
104
105
106
107
108
109
[build-system]
requires = [
"setuptools",
"setuptools_scm[toml]>=3.4.3",
"wheel",
]
build-backend = "setuptools.build_meta"
[project]
name = "hveto"
description = "A python implementation of the HierarchicalVeto (hveto) algorithm"
readme = "README.rst"
authors = [
{ name = "Joshua Smith", email = "[email protected]" },
{ name = "Duncan Macleod", email = "[email protected]" },
]
maintainers = [
{ name = "Joe Areeda", email = "[email protected]" },
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Intended Audience :: End Users/Desktop",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Natural Language :: English",
"Operating System :: POSIX",
"Operating System :: Unix",
"Operating System :: MacOS",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Astronomy",
"Topic :: Scientific/Engineering :: Physics",
]
# requirements
requires-python = ">=3.9"
dependencies = [
"gwdetchar >= 2.0.0",
"gwpy >=2.0.0",
"gwtrigfind",
"h5py",
"lxml",
"MarkupPy >=1.14",
"matplotlib >=3.1",
"numpy >=1.10",
"python-ligo-lw >= 1.5.0",
"scipy",
]
# dynamic properties set by tools
dynamic = [
"version",
]
[project.optional-dependencies]
# test suite
test = [
"coverage[toml]",
"pytest >=3.1.0",
"pytest-cov >=2.4.0",
]
# sphinx documentation
docs = [
"numpydoc",
"Sphinx",
"sphinx_bootstrap_theme",
"sphinxcontrib-programoutput",
]
[project.scripts]
hveto = "hveto.__main__:main"
hveto-cache-events = "hveto.cli.cache_events:main"
hveto-trace = "hveto.cli.trace:main"
[project.urls]
"Bug Tracker" = "https://github.com/gwdetchar/hveto/issues"
"Documentation" = "https://hveto.readthedocs.io"
"Source Code" = "https://github.com/gwdetchar/hveto"
[tool.setuptools]
license-files = [ "LICENSE" ]
[tool.setuptools_scm]
write_to = "hveto/_version.py"
# -- coverage
[tool.coverage.run]
source = [ "hveto" ]
omit = [
# don't report coverage for _version.py
# (generated automatically by setuptools-scm)
"*/_version.py",
]
[tool.coverage.report]
# print report with one decimal point
precision = 1
# -- pytest
[tool.pytest.ini_options]
# print reasons for everything
addopts = "-r a"