-
-
Notifications
You must be signed in to change notification settings - Fork 40
Expand file tree
/
Copy pathpyproject.toml
More file actions
40 lines (35 loc) · 1.35 KB
/
pyproject.toml
File metadata and controls
40 lines (35 loc) · 1.35 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
[build-system]
requires = ["setuptools", "wheel", "setuptools-scm[toml] >= 7.0.5"]
build-backend = "setuptools.build_meta"
[project]
name = "pathsim"
dynamic = ["version"]
description = "A differentiable block based hybrid system simulation framework."
readme = "README.md"
authors = [{ name = "Milan Rother", email = "milan.rother@gmx.de" }]
license = { text = "MIT" }
keywords = ["simulation", "differentiable", "hybrid systems"]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
requires-python = ">=3.8"
dependencies = ["numpy>=1.15", "matplotlib>=3.1", "scipy>=1.2"]
[project.optional-dependencies]
# Both `rf` and `fmi` are deprecated as of v0.22 — the corresponding blocks
# have moved to their own toolboxes (pathsim-rf, pathsim-fmi) and the extras
# will be removed in v1.0.0. Install the toolboxes directly instead.
rf = ["scikit-rf"]
fmi = ["FMPy"]
test = ["pytest", "pytest-cov", "pytest-xdist", "FMPy", "scikit-rf"]
[project.urls]
Homepage = "https://github.com/pathsim/pathsim"
documentation = "https://pathsim.readthedocs.io/en/latest/"
[tool.pytest.ini_options]
addopts = "-m 'not slow'"
markers = [
"slow: long-running integration / eval tests (deselected by default, use -m slow or --run-all)",
]
[tool.setuptools_scm]
write_to = "src/pathsim/_version.py"