-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.cfg
67 lines (60 loc) · 1.54 KB
/
setup.cfg
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
[metadata]
name = ligotimegps
author = Duncan Macleod
author_email = [email protected]
description = A pure Python version of lal.LIGOTimeGPS
license = GPL-3.0-or-later
license_files = LICENSE
long_description = file: README.md
long_description_content_type = text/markdown
download_url = https://pypi.org/project/ligotimegps/
project_urls =
Bug Tracker = https://github.com/gwpy/ligotimegps/issues
Documentation = https://ligotimegps.readthedocs.io/
Source Code = https://github.com/gwpy/ligotimegps
classifiers =
Development Status :: 5 - Production/Stable
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 :: Astronomy
Topic :: Scientific/Engineering :: Physic
[options]
packages = find:
python_requires = >=3.4
setup_requires =
setuptools >= 38.2.5
setuptools_scm
wheel
[options.extras_require]
docs =
sphinx >= 1.8.0
sphinx-automodapi
sphinx_rtd_theme
sphinx-tabs
test =
pytest >= 3.6.3
pytest-cov >= 2.4.0
# -- packaging --------------
[bdist_wheel]
universal = 1
# -- tools ------------------
[coverage:run]
source = ligotimegps
omit =
ligotimegps/_version.py
[flake8]
exclude =
__pycache__,
.eggs/,
.git/,
docs/,
ligotimegps/_version.py,
venv/,