-
Notifications
You must be signed in to change notification settings - Fork 56
/
pyproject.toml
203 lines (189 loc) · 4.46 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
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
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
[project]
name = "gala"
authors = [
{name = "Adrian Price-Whelan", email = "[email protected]"},
]
description = "Galactic dynamics in Python"
readme = "README.rst"
requires-python = ">=3.10"
keywords = ["astronomy", "dynamics"]
license = {file = "LICENSE"}
classifiers = [
"Development Status :: 5 - Production/Stable",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"Topic :: Scientific/Engineering :: Astronomy"
]
dependencies = [
"numpy>=1.24.4",
"scipy>=1.8",
"astropy>=5.0",
"pyyaml",
"cython>=0.29"
]
dynamic = ["version"]
[tool.setuptools.dynamic]
version = {attr = "gala.__version__"}
[project.urls]
Documentation = "https://gala.adrian.pw"
Repository = "https://github.com/adrn/gala.git"
[project.optional-dependencies]
shared = [
"matplotlib",
"numexpr",
"h5py",
"tqdm",
]
test = [
"gala[shared]",
"pytest",
"pytest-astropy",
]
extra = [
"galpy",
"sympy",
"twobody",
]
docs = [
"gala[shared,extra]",
"numpydoc",
"IPython",
"nbsphinx",
"ipython_genutils",
"pydata_sphinx_theme",
"sphinx",
"sphinxcontrib-bibtex",
"sphinx-astrorefs",
"sphinx_automodapi",
"sphinx_astropy",
"rtds_action",
"requests"
]
tutorials = [
"gala[shared,extra]",
"IPython",
"nbconvert",
"ipython_genutils",
"jupyter_client",
"ipykernel",
"jupytext",
"pyia>=1.4",
"astroquery"
]
[build-system]
requires = [
"setuptools>=42",
"wheel",
"setuptools_scm",
"extension-helpers==1.*",
"numpy>=2.0",
"cython"
]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
where = ["."]
include = ["gala", "gala.*"]
[tool.setuptools.package-data]
"*" = ["*.c"]
"gala" = ["extra_compile_macros.h", "cconfig.pyx", "*.c"]
"gala.coordinates.tests" = ["*.txt", "*.npy", "SgrCoord_data", "*.csv"]
"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",
"potential/tests/*.pot",
"potential/tests/*.fits"
]
[tool.setuptools_scm]
version_file = "gala/_version.py"
local_scheme = "no-local-version" # So that uploads to test.pypi.org work
[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/_*"
]
[tool.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",
]
[tool.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_"
]
[tool.black]
line-length = 88
target-version = ["py310"]
[tool.isort]
profile = "black"
multi_line_output = 3
include_trailing_comma = true
force_grid_wrap = 0
use_parentheses = true
ensure_newline_before_comments = true
line_length = 88
[tool.ruff]
line-length = 88
select = ["E", "F"]
force-exclude = true
[tool.ruff.per-file-ignores]
"__init__.py" = ["F401", "F403"]
"test*.py" = ["F841"]
"docs/tutorials/*" = ["E703"]