-
Notifications
You must be signed in to change notification settings - Fork 7
/
pyproject.toml
53 lines (46 loc) · 1.46 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
[build-system]
requires = ["setuptools >= 61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "aas_editor"
version = "0.4.1"
dependencies = [
"PyQt6",
"qtawesome>=1.2.3",
"basyx-python-sdk @ git+https://github.com/zrgt/basyx-python-sdk@aas_manager/v30",
"pytz>=2023.3",
"PyQt6-WebEngine",
"pyinstaller==6.4.0",
"openpyxl>=3.1.2",
"toml>=0.10.2",
]
requires-python = ">=3.10"
authors = [
{name = "Igor Garmaev", email = "[email protected]"},
]
maintainers = [
{name = "Igor Garmaev", email = "[email protected]"},
]
description = """
AAS Manager is a free, open source, cross-platform viewer/editor based for Asset Administration Shell (AAS).
The editor is based on PyQt Framework and Eclipse BaSyx Python SDK (https://github.com/eclipse-basyx/basyx-python-sdk).
Developed at the Chair of Information and Automation Systems for Process and Material Technology at RWTH Aachen.
"""
readme = "README.md"
license = {text = "GNU General Public License v3.0"}
keywords = ["AAX"]
classifiers = [
"Development Status :: 4 - Beta",
"Programming Language :: Python"
]
[tool.setuptools.packages.find]
where = ["aas_editor"]
include = ["."]
[project.urls]
Homepage = "https://github.com/rwth-iat/aas_manager"
Repository = "https://github.com/rwth-iat/aas_manager.git"
Issues = "https://github.com/rwth-iat/aas_manager/issues"
[project.entry-points."spam"]
aas_editor = "main:main"
[project.gui-scripts]
aas_editor = "main:main"