-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
42 lines (38 loc) · 1.05 KB
/
Copy pathpyproject.toml
File metadata and controls
42 lines (38 loc) · 1.05 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
[build-system]
requires = ["maturin>=1.8,<2"]
build-backend = "maturin"
[project]
name = "libpetri"
dynamic = ["version"]
description = "Python bindings for libpetri"
readme = "README.md"
requires-python = ">=3.11"
license = { text = "Apache-2.0" }
authors = [{ name = "Dennis Berger" }]
classifiers = [
"Development Status :: 4 - Beta",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3",
"Programming Language :: Rust",
"Typing :: Typed",
]
keywords = ["petri-net", "workflow", "verification", "graphviz", "python"]
dependencies = []
[project.optional-dependencies]
dev = [
"maturin>=1.8,<2",
"pytest>=8.3",
"pytest-asyncio>=0.24",
"pytest-benchmark>=5.0",
]
[tool.maturin]
manifest-path = "../rust/libpetri-py/Cargo.toml"
python-source = "."
module-name = "libpetri._libpetri"
features = ["extension-module", "full"]
include = ["README.md"]
[tool.pytest.ini_options]
testpaths = ["tests"]
asyncio_mode = "auto"
python_files = ["test_*.py", "bench_*.py"]
python_functions = ["test_*", "bench_*"]