-
Notifications
You must be signed in to change notification settings - Fork 9
/
pyproject.toml
53 lines (48 loc) · 1.5 KB
/
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
45
46
47
48
49
50
51
52
53
[build-system]
requires = ["scikit-build-core"]
build-backend = "scikit_build_core.build"
[project]
name = "autosar-e2e"
description = 'Python implementation of the AUTOSAR E2E Protocol'
readme = "README.md"
requires-python = ">=3.7"
license = { text = "MIT" }
keywords = [
"AUTOSAR",
"E2E",
"automotive",
]
authors = [
{ name = "Artur Drogunow", email = "[email protected]" },
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Programming Language :: Python",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: Implementation :: CPython",
]
dependencies = []
dynamic = ["version"]
[project.urls]
Documentation = "https://autosar-e2e.readthedocs.io/en/latest"
Issues = "https://github.com/zariiii9003/autosar-e2e/issues"
Source = "https://github.com/zariiii9003/autosar-e2e"
Homepage = "https://github.com/zariiii9003/autosar-e2e"
[tool.scikit-build]
metadata.version.provider = "scikit_build_core.metadata.setuptools_scm"
sdist.include = ["src/e2e/_version.py"]
wheel.packages = ["src/e2e"]
wheel.py-api = "cp311"
[tool.setuptools_scm] # Section required
write_to = "src/e2e/_version.py"
[tool.cibuildwheel]
test-requires = "pytest"
test-command = "pytest {project}/test"
build-frontend = "build"
skip = "pp*"