-
Notifications
You must be signed in to change notification settings - Fork 44
Expand file tree
/
Copy pathpyproject.toml
More file actions
70 lines (64 loc) · 1.83 KB
/
pyproject.toml
File metadata and controls
70 lines (64 loc) · 1.83 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
60
61
62
63
64
65
66
67
68
69
70
[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 basyx.version import version
# print(f"Project version: {version}")
# ```
root = ".." # Defines the path to the root of the repository
version_file = "basyx/version.py"
[project]
name = "basyx-python-sdk"
dynamic = ["version"]
description = "The Eclipse BaSyx Python SDK, an implementation of the Asset Administration Shell for Industry 4.0 systems"
authors = [
{ name = "The Eclipse BaSyx 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 = [
"lxml>=6.0.2",
"python-dateutil>=2.8,<3",
"pyecma376-2>=1.0.2"
]
[project.optional-dependencies]
dev = [
"mypy==1.15.0",
"pycodestyle",
"codeblocks",
"coverage",
"schemathesis~=3.7",
"jsonschema~=4.7",
"hypothesis~=6.13",
"types-python-dateutil",
"lxml-stubs~=0.5.1",
]
docs= [
"sphinx~=8.2",
"sphinx-rtd-theme~=3.0",
"sphinx-argparse~=0.5.0"
]
[project.urls]
"Homepage" = "https://github.com/eclipse-basyx/basyx-python-sdk"
[tool.setuptools]
packages = { find = { include = ["basyx*"], exclude = ["test*"] } }
[tool.setuptools.package-data]
basyx = ["py.typed"]
"basyx.aas.examples.data" = ["TestFile.pdf"]