Skip to content

Commit

Permalink
Add dev optional dependencies to pyproject.toml
Browse files Browse the repository at this point in the history
  • Loading branch information
hadijannat committed Jul 20, 2024
1 parent 9622a04 commit 9acdd98
Showing 1 changed file with 24 additions and 13 deletions.
37 changes: 24 additions & 13 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,38 +1,49 @@
[build-system]
requires = ["setuptools>=40.8.0", "wheel"]
requires = ["setuptools>=45", "wheel", "setuptools_scm[toml]>=6.2"]
build-backend = "setuptools.build_meta"

[project]
name = "basyx-python-sdk"
version = "1.0.0" # actual version
version = "0.1.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"} # authors
{ name = "The Eclipse BaSyx Authors", email = "admins@iat.rwth-aachen.de" }
]
readme = "README.md"
license = {file = "LICENSE"}
license = { file = "LICENSE" }
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Development Status :: 5 - Production/Stable",
"Development Status :: 5 - Production/Stable"
]
requires-python = ">=3.8"
dependencies = [
"jsonschema~=4.7",
"python-dateutil>=2.8,<3",
"lxml>=4.2,<5",
"python-dateutil>=2.8,<3.0",
"pyecma376-2>=0.2.4",
"urllib3>=1.26,<2.0",
"lxml-stubs~=0.5.1",
"pyecma376-2>=0.2.4"
]

[project.optional-dependencies]
dev = [
"pytest>=6.0",
"flake8>=3.8",
"coverage",
# Add any other development dependencies here
]

[project.urls]
Homepage = "https://github.com/eclipse-basyx/basyx-python-sdk"
"Homepage" = "https://github.com/eclipse-basyx/basyx-python-sdk"

[tool.setuptools.packages.find]
exclude = ["test", "test.*"]
[tool.setuptools]
packages = ["basyx"]

[tool.setuptools.package-data]
"basyx" = ["py.typed"]
basyx = ["py.typed"]
"basyx.aas.examples.data" = ["TestFile.pdf"]

[tool.setuptools.exclude-package-data]
"*" = ["test", "test.*"]

[tool.setuptools_scm]

0 comments on commit 9acdd98

Please sign in to comment.