-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpyproject.toml
32 lines (28 loc) · 1002 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
[build-system]
requires = ["maturin>=1.2,<2.0"]
build-backend = "maturin"
[project]
name = "autosar-data"
requires-python = ">=3.7"
classifiers = [
"Intended Audience :: Developers",
"Operating System :: MacOS :: MacOS X",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX",
"Programming Language :: Rust",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
]
version = "0.10.1"
description = "read, write and modify Autosar arxml data using Python"
authors = [{name="Daniel Thaler", email="daniel@dthaler.de"}]
readme = "README.md"
[project.urls]
Source = "https://github.com/DanielT/autosar-data-py"
Tracker = "https://github.com/DanielT/autosar-data-py/issues"
Documentation = "https://danielt.github.io/autosar-data-py/"
[tool.maturin]
features = ["pyo3/extension-module"]
[tool.pytest.ini_options]
python_files = ["test.py", "test_*.py", "*_test.py"]
testpaths = ["test"]