-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy pathpyproject.toml
120 lines (107 loc) · 2.84 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
110
111
112
113
114
115
116
117
118
119
[build-system]
requires = [
"setuptools>=61",
"setuptools_scm[toml]>=3.4.3",
"wheel",
]
build-backend = "setuptools.build_meta"
[project]
name = "gwsumm"
description = "A python toolbox used by the LIGO Scientific Collaboration for detector characterisation"
readme = "README.rst"
requires-python = ">=3.9"
authors = [
{ name = "Alex Urban", email = "[email protected]" },
{ name = "Duncan Macleod", email = "[email protected]" },
]
maintainers = [
{ name = "Evan Goetz", email = "[email protected]" },
]
license = { text = "GPL-3.0-or-later" }
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Natural Language :: English",
"Operating System :: OS Independent",
"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",
]
dependencies = [
"astropy >=3.0.0",
"gwdatafind >=1.1.1",
"gwdetchar >=2.2.7",
"gwpy >=2.0.0, <=3.0.8",
"gwtrigfind",
"lalsuite",
"ligo-segments",
"lscsoft-glue >=1.60.0",
"lxml",
"markdown",
"MarkupPy",
"matplotlib >=3.5",
"numpy >=1.16,<2.0",
"pygments >=2.7.0",
"python-dateutil",
"python-ligo-lw",
"scipy >=1.2.0, <1.14",
]
dynamic = ["version"]
[project.optional-dependencies]
test = [
"flake8",
"pytest >=3.3.0",
"pytest-cov >=2.4.0",
]
dev = [
"h5py",
"ligo-gracedb >= 2.0.0",
"pykerberos",
]
doc = [
"numpydoc",
"sphinx",
"sphinx-automodapi",
"sphinx_bootstrap_theme",
"sphinxcontrib-programoutput",
]
[project.scripts]
gw_summary = "gwsumm.__main__:main"
gw_summary_pipe = "gwsumm.batch:main"
gwsumm-plot-guardian = "gwsumm.plot.guardian.__main__:main"
gwsumm-plot-triggers = "gwsumm.plot.triggers.__main__:main"
[project.urls]
"Documentation" = "https://gwsumm.readthedocs.io"
"Source Code" = "https://github.com/gwpy/gwsumm"
"Bug Tracker" = "https://github.com/gwpy/gwsumm/issues"
"Discussion Forum" = "https://gwdetchar.slack.com"
[tool.setuptools]
license-files = [ "LICENSE" ]
include-package-data = true
[tool.setuptools.packages.find]
include = [ "gwsumm*" ]
[tool.setuptools_scm]
write_to = "gwsumm/_version.py"
[tool.coverage.run]
source = [ "gwsumm" ]
omit = [
# don't report coverage for _version.py
# (generated automatically by setuptools-scm)
"*/_version.py",
"gwsumm/tests/*",
"gwsumm/html/tests/*",
# omit scripts for now, will be done in a future PR
"gwsumm/__main__.py",
]
[tool.coverage.report]
# print report with one decimal point
precision = 1
[tool.pytest.ini_options]
addopts = "-r a"