-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpyproject.toml
More file actions
69 lines (61 loc) · 1.95 KB
/
pyproject.toml
File metadata and controls
69 lines (61 loc) · 1.95 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
[build-system]
requires = ["setuptools >= 61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "aas_editor"
version = "0.4.10"
dependencies = [
"PyQt6",
"basyx-python-sdk@git+https://github.com/rwth-iat/basyx-python-sdk@aas_manager/v301#subdirectory=sdk",
"aas-test-engines==1.0.3",
"pytz>=2023.3",
"PyQt6-WebEngine",
"PyQt6-QScintilla",
"pyinstaller==6.15.0",
"openpyxl>=3.1.2",
"toml>=0.10.2",
# Handover Documentation Tool
"langchain==1.2.4",
"langchain-classic==1.0.1",
"langchain-text-splitters==1.1.0",
"langchain-huggingface==1.2.0",
"langchain-openai==1.1.7",
"langchain-anthropic==1.3.1",
"langchain-groq==1.1.1",
"langchain-google-vertexai==3.2.1",
"langchain-mistralai==1.1.1",
"langchain-community==0.4.1",
"pypdf==6.6.0",
"sentence-transformers==5.2.0",
"faiss-cpu==1.13.2",
]
requires-python = ">=3.10"
authors = [
{name = "Igor Garmaev", email = "i.garmaev@iat.rwth-aachen.de"},
]
maintainers = [
{name = "Igor Garmaev", email = "i.garmaev@iat.rwth-aachen.de"},
]
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"