-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
176 lines (169 loc) · 3.52 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
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
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
[metadata]
name = gala
author = Adrian M. Price-Whelan
author_email = [email protected]
description = Galactic dynamics in Python
long_description = file: README.rst
license = MIT
license_file = LICENSE
url = http://gala.adrian.pw/
edit_on_github = False
github_project = adrn/gala
python_requires = ">=3.8"
[options]
zip_safe = False
packages = find:
install_requires =
numpy>=1.20
astropy>=4.2
pyyaml
cython>=0.29
scipy>=1.6
packaging
python_requires = >=3.8
setup_requires =
setuptools_scm
extension-helpers
wheel
[options.package_data]
* = *.c
gala = extra_compile_macros.h, cconfig.pyx
gala.coordinates.tests = *.txt, *.npy, SgrCoord_data
gala.dynamics = */*.pyx, */*.pxd, */*.h, nbody/nbody_helper.h
gala.integrate =
*/*.pyx
*/*.pxd
cyintegrators/*.c
cyintegrators/dopri/*.c
cyintegrators/dopri/*.h
gala.potential =
src/funcdefs.h
potential/src/cpotential.h
frame/src/cframe.h
*/*.pyx
*/*.pxd
scf/tests/data/*
potential/tests/*.yml
[options.extras_require]
# https://stackoverflow.com/a/61610341
all =
matplotlib
numexpr
h5py
tqdm
test =
%(all)s
pytest
pytest-astropy
extra =
galpy
sympy
twobody
docs =
%(all)s
%(extra)s
numpydoc
IPython
nbsphinx
ipython_genutils
pydata_sphinx_theme
sphinx
sphinxcontrib-bibtex
sphinx-astrorefs
sphinx_automodapi
sphinx_astropy
rtds_action
cmastro
requests
tutorials =
%(all)s
%(extra)s
cmastro
IPython
nbconvert
ipython_genutils
jupyter_client
ipykernel
jupytext
pyia
astroquery
[tool:pytest]
testpaths = "gala" "docs"
astropy_header = true
doctest_plus = enabled
text_file_format = rst
addopts = --doctest-rst
norecursedirs =
docs/tutorials/*
docs/_*
doctest_norecursedirs =
docs/tutorials/*
docs/_*
[flake8]
max-line-length = 100
per-file-ignores =
# imported but unused
__init__.py: F401, F403
# local variable assigned but never used
test*.py: F841
helpers.py: F841
docs/tutorials/*: E703
ignore =
E203
E226
E402
E741
W503
W504
exclude =
extern
sphinx
*parsetab.py
conftest.py
docs/conf.py
setup.py
gala/dynamics/actionangle/_genfunc
gala/coordinates/tests/helpers.py
[coverage:run]
omit =
gala/_astropy_init*
gala/conftest*
gala/cython_version*
gala/setup_package*
gala/*/setup_package*
gala/*/*/setup_package*
gala/tests/*
gala/*/tests/*
gala/*/*/tests/*
gala/version*
gala/dynamics/_genfunc/*
gala/coordinates/poincarepolar.py
gala/coordinates/velocity_frame_transforms.py
*/gala/_astropy_init*
*/gala/conftest*
*/gala/cython_version*
*/gala/setup_package*
*/gala/*/setup_package*
*/gala/*/*/setup_package*
*/gala/tests/*
*/gala/*/tests/*
*/gala/*/*/tests/*
*/gala/version*
*/gala/dynamics/_genfunc/*
*/gala/coordinates/poincarepolar.py
*/gala/coordinates/velocity_frame_transforms.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
# Don't complain if tests don't hit assertions
raise AssertionError
raise NotImplementedError
# Don't complain about script hooks
def main\(.*\):
# Ignore branches that don't pertain to this version of Python
pragma: py{ignore_python_version}
# Don't complain about IPython completion helper
def _ipython_key_completions_