forked from PlasmaPy/plasmapy-summer-school
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
44 lines (39 loc) · 859 Bytes
/
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
[build-system]
build-backend = "setuptools.build_meta"
requires = [
"setuptools >= 61.2.0",
"setuptools-scm >= 6.3.2",
"wheel >= 0.37.0",
]
[project]
name = "hack"
description = "A hack package for PlasmaPy's summer school 2024"
readme = "README.md"
license = {file = "LICENSE"}
version = "2024.7.0"
dependencies = [
"astropy >= 6.0.0",
"mypy >= 1.10.0",
"nbsphinx >= 0.9.3",
"nox",
"numpy >= 1.24.0, < 2.0.0",
"plasmapy[docs,tests] >= 2024.7.0",
"pre-commit >= 3.6.0",
"pytest >= 8.0.0",
"scipy >= 1.8.0",
"sphinx >= 7.3.7",
"sphinx_rtd_theme >= 2.0.0",
"uv",
]
[tool.setuptools]
include-package-data = true
[tool.pytest.ini_options]
testpaths = ['.']
markers = [
"slow: marks tests as slow (deselect with '-m \"not slow\"')",
]
doctest_optionflags = """
NORMALIZE_WHITESPACE
ELLIPSIS
NUMBER
IGNORE_EXCEPTION_DETAIL"""