-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathsetup.cfg
More file actions
57 lines (49 loc) · 1.17 KB
/
setup.cfg
File metadata and controls
57 lines (49 loc) · 1.17 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
[metadata]
name = legwork
url = https://github.com/TeamLEGWORK/LEGWORK
author = Tom Wagg, Katie Breivik
author_email = tomjwagg@gmail.com
license = MIT
license_file = LICENSE.rst
description = A python package to compute gravitational wave evolution and signal to noise ratio calculations for LISA
long_description = file: README.md
long_description_content_type = text/markdown
# NOTE: any changes in the requirements must also be reflected in
# - requirements.txt
# - environment.yml
# - install.rst
[options]
python_requires = >=3.11
packages = find:
install_requires =
numba >= 0.58
numpy >= 1.26
astropy >= 6.1
scipy >= 1.13
matplotlib >= 3.8
seaborn >= 0.13.2
schwimmbad >= 0.4.2
[options.package_data]
* = *.npy, *.npz
[options.extras_require]
test =
pytest
docs =
sphinx
matplotlib
[tool:pytest]
testpaths = "legwork"
[coverage:run]
omit =
legwork/tests/*
legwork/__init__.py
legwork/visualisation.py
setup.py
[coverage:report]
exclude_lines =
# Have to re-enable the standard pragma
pragma: no cover
# Don't complain about packages we have installed
except ImportError
[flake8]
max-line-length = 110