-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
39 lines (33 loc) · 1.01 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
[build-system]
requires = ["setuptools >= 61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "aas-upgrader-tool"
version = "0.1.0"
dependencies = [
"basyx-python-sdk==1.0.0",
"basyx-python-sdk-2 @ git+https://github.com/zrgt/basyx-python-sdk@archive/v2.0.1",
]
requires-python = ">=3.10"
authors = [
{name = "Igor Garmaev", email = "[email protected]"},
]
maintainers = [
{name = "Igor Garmaev", email = "[email protected]"},
]
description = "Tool for upgrading existing AAS from v2.0.1 to V3.0.1"
readme = "README.md"
license = {file = "LICENSE"}
keywords = ["AAS", "Upgrader"]
classifiers = [
"Development Status :: 4 - Beta",
"Programming Language :: Python"
]
[tool.setuptools.packages]
find = {}
[project.urls]
Homepage = "https://github.com/rwth-iat/aas_upgrader_tool"
Repository = "https://github.com/rwth-iat/aas_upgrader_tool.git"
"Bug Tracker" = "https://github.com/rwth-iat/aas_upgrader_tool/issues"
[project.scripts]
aas_upgrader = "aas_upgrader:upgrader"