-
Notifications
You must be signed in to change notification settings - Fork 44
Expand file tree
/
Copy pathpyproject.toml
More file actions
60 lines (53 loc) · 1.6 KB
/
pyproject.toml
File metadata and controls
60 lines (53 loc) · 1.6 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
[build-system]
requires = [
"setuptools>=77.0.0",
"wheel",
"setuptools_scm[toml]>=6.2"
]
build-backend = "setuptools.build_meta"
[tool.setuptools_scm]
# Configure setuptools_scm for version management:
# - Automatically infers the version number from the most recent git tag
# - Generates a version.py file in the package directory
# - Allows for automatic versioning between releases (e.g., 1.0.1.dev4+g12345)
# If you want to use the version anywhere in the code, use
# ```
# from aas_compliance_tool.version import version
# print(f"Project version: {version}")
# ```
root = ".." # Defines the path to the root of the repository
version_file = "aas_compliance_tool/version.py"
[project]
name = "aas_compliance_tool"
dynamic = ["version"]
description = "AAS compliance checker based on the Eclipse BaSyx Python SDK"
authors = [
{ name = "The AAS Compliance Tool authors", email = "admins@iat.rwth-aachen.de" }
]
readme = "README.md"
license = "MIT"
license-files = ["LICENSE"]
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
"Development Status :: 5 - Production/Stable"
]
requires-python = ">=3.10"
dependencies = [
"pyecma376-2>=0.2.4",
"jsonschema>=4.21.1",
"basyx-python-sdk>=1.0.0",
]
[project.optional-dependencies]
dev = [
"mypy",
"pycodestyle",
"codeblocks",
"coverage",
]
[project.urls]
"Homepage" = "https://github.com/eclipse-basyx/basyx-python-sdk"
[tool.setuptools]
packages = { find = { include = ["aas_compliance_tool*"], exclude = ["test*"] } }
[tool.setuptools.package-data]
aas_compliance_tool = ["py.typed"]