forked from eclipse-basyx/basyx-python-sdk
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Migrate changes for updating pyproject.toml to eclipse-basyx
- Loading branch information
1 parent
fef92d0
commit 5f7c251
Showing
2 changed files
with
49 additions
and
49 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,49 @@ | ||
[build-system] | ||
requires = ["setuptools>=45", "wheel", "setuptools_scm[toml]>=6.2"] | ||
build-backend = "setuptools.build_meta" | ||
|
||
[project] | ||
name = "basyx-python-sdk" | ||
version = "1.0.0" | ||
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 = { file = "LICENSE" } | ||
classifiers = [ | ||
"Programming Language :: Python :: 3", | ||
"License :: OSI Approved :: MIT License", | ||
"Operating System :: OS Independent", | ||
"Development Status :: 5 - Production/Stable" | ||
] | ||
requires-python = ">=3.8" | ||
dependencies = [ | ||
"python-dateutil>=2.8,<3", | ||
"lxml>=4.2,<5", | ||
"urllib3>=1.26,<2.0", | ||
"pyecma376-2>=0.2.4" | ||
] | ||
|
||
[project.optional-dependencies] | ||
dev = [ | ||
"mypy", | ||
"pycodestyle", | ||
"codeblocks", | ||
"coverage", | ||
# You may want to keep other necessary development dependencies here | ||
] | ||
|
||
[project.urls] | ||
"Homepage" = "https://github.com/eclipse-basyx/basyx-python-sdk" | ||
|
||
[tool.setuptools] | ||
packages = ["basyx"] | ||
|
||
[tool.setuptools.package-data] | ||
basyx = ["py.typed"] | ||
"basyx.aas.examples.data" = ["TestFile.pdf"] | ||
|
||
[tool.setuptools.exclude-package-data] | ||
"*" = ["test", "test.*"] | ||
|