forked from gwpy/gwsumm
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.cfg
More file actions
108 lines (98 loc) · 2.29 KB
/
setup.cfg
File metadata and controls
108 lines (98 loc) · 2.29 KB
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
; -- metadata ---------------
[versioneer]
VCS = git
style = pep440
versionfile_source = gwsumm/_version.py
versionfile_build = gwsumm/_version.py
tag_prefix =
parentdir_prefix =
[bdist_wheel]
universal = 1
[metadata]
name = gwsumm
author = Alex Urban, Duncan Macleod
author_email = alexander.urban@ligo.org
license = GPL-3.0-or-later
license_file = LICENSE
keywords = physics, astronomy, gravitational-waves, ligo
url = https://gwsumm.readthedocs.io
description = A python toolbox used by the LIGO Scientific Collaboration for detector characterisation
long_description = file: README.rst
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.6
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Topic :: Scientific/Engineering
Topic :: Scientific/Engineering :: Astronomy
Topic :: Scientific/Engineering :: Physics
[options]
zip_safe = False
packages = find:
python_requires = >=3.6
setup_requires =
setuptools >=30.3.0
install_requires =
astropy >=3.0.0
gwdatafind
gwdetchar >=2.0.0
gwpy >=2.0.0
gwtrigfind
lalsuite
ligo-segments
lscsoft-glue >=1.60.0
lxml
markdown
MarkupPy
matplotlib >=3.1
numpy >=1.16
pygments >=2.7.0
python-dateutil
scipy >=1.2.0
tests_require =
flake8
pytest >=3.3.0
pytest-cov >=2.4.0
[options.entry_points]
console_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
[options.extras_require]
doc =
sphinx
numpydoc
sphinx_bootstrap_theme
astropy_helpers
[tool:pytest]
; print skip reasons
addopts = -r s
; -- tools ------------------
[coverage:run]
source = gwsumm
omit =
gwsumm/tests/*
gwsumm/html/tests/*
gwsumm/*version*
; omit scripts for now, will be done in a future PR
gwsumm/__main__.py
[flake8]
exclude =
__pycache__,
.eggs/,
.git/,
build/,
docs/,
gwsumm/_version.py,
versioneer.py,
per-file-ignores =
__init__.py:F401,