-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
84 lines (74 loc) · 2.28 KB
/
pyproject.toml
File metadata and controls
84 lines (74 loc) · 2.28 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
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
[project]
authors = [{ name = "Adrien Plaçais", email = "placais@lpsc.in2p3.fr" }]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.12",
"Topic :: Scientific/Engineering :: Physics",
]
dependencies = [
"matplotlib>=3.9.1, <4",
"numpy>=2, <3",
"pandas>=2.2, <3",
"palettable>=3.3.3, <4",
"pre-commit>=4, <5",
"scipy>=1.15,<2",
"vedo>=2025.5,<2026",
]
description = "Treat data from CST Particle Studio and SPARK3D for multipactor"
dynamic = ["version"]
name = "Simultipac"
readme = "README.md"
requires-python = ">=3.12"
[project.optional-dependencies]
docs = [
"myst-parser>=4, <5",
"nbsphinx>=0.9.6, <1",
"sphinx-autodoc-typehints>=3.0.1, <4",
"sphinx-rtd-theme>=3, <4",
"sphinx-tabs>=3.4,<4",
"sphinxcontrib-bibtex>=2.6,<3",
]
k3d = [
"jupyter",
"k3d>=2.16, <3",
"notebook>=7, <8",
]
test = ["pytest>=8.3.2, <9", "pytest-mock>=3.14, <4"]
[project.urls]
changelog = "https://github.com/AdrienPlacais/Simulia_Multipactor_lib/blob/main/CHANGELOG.md"
documentation = "https://simultipac.readthedocs.io/en/latest/"
homepage = "https://github.com/AdrienPlacais/Simulia_Multipactor_lib"
tracker = "https://github.com/AdrienPlacais/Simulia_Multipactor_lib/issues"
[tool.black]
line-length = 79
target-version = ["py312"]
[tool.isort]
line_length = 79
profile = "black"
src_paths = ["./src"]
[tool.pytest.ini_options]
addopts = ["--import-mode=importlib", "--strict-markers"]
filterwarnings = ["ignore:.*cKDTree.*:DeprecationWarning"]
markers = [
"implementation: mark tests currently under implementation",
"slow: mark a test as slow (deselect with '-m \"not slow\"')",
"smoke: mark quick and critical tests (select with '-m smoke')",
"tmp: mark to select specific tests for debug",
]
minversion = "6.0"
testpaths = ["tests"]
[tool.setuptools]
package-dir = { "" = "src" }
[tool.setuptools.packages.find]
where = ["src"]
[tool.setuptools_scm]
[tool.cibuildwheel]
build-verbosity = 1
test-command = 'pytest {project}/tests -m "not implementation and not slow"'
test-extras = "test"
[build-system]
build-backend = "setuptools.build_meta"
requires = ["setuptools>=64", "setuptools-scm>=8, <9"]