-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
109 lines (99 loc) · 2.4 KB
/
pyproject.toml
File metadata and controls
109 lines (99 loc) · 2.4 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
[build-system]
requires = ["hatchling >= 1.26", "hatch-vcs>=0.3"]
build-backend = "hatchling.build"
[project]
name = "shellsmith"
dynamic = ["version"]
authors = [{ name = "Peter Stein", email = "peter.stein@dfki.de" }]
description = "A Python SDK for Eclipse BaSyx to manage Asset Administration Shells (AAS)"
license = { file = "LICENSE" }
readme = { file = "README.md", content-type = "text/markdown" }
requires-python = ">=3.10"
classifiers = [
"Environment :: Console",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Software Development :: Libraries",
"Topic :: Software Development :: Libraries :: Python Modules",
]
keywords = [
"aas",
"asset-administration-shell",
"basyx",
"eclipse-basyx",
"industry40",
"i40",
"digital-twin",
"rest-client",
"python",
]
dependencies = [
"httpx",
"pydantic-settings",
"pyyaml",
]
[project.optional-dependencies]
test = [
"mypy",
"pytest",
"pytest-asyncio",
"pytest-cov",
"pytest-dotenv",
"ruff",
"types-pyyaml",
"types-requests"
]
cli = [
"aas-cli",
]
docs = [
"mkdocs",
"mkdocs-material",
"termynal",
]
mcp = [
"aas-mcp",
]
neo4j = [
"neo4j",
]
[project.urls]
Homepage = "https://github.com/SmartFactory-KL/shellsmith"
Issues = "https://github.com/SmartFactory-KL/shellsmith/issues"
Documentation = "https://shellsmith.pages.dev"
[tool.hatch.version]
source = "vcs"
[tool.hatch.build.targets.sdist]
include = ["src", "README.md", "LICENSE"]
[tool.ruff]
target-version = "py310"
[tool.ruff.lint]
select = [
"ANN", # flake8-annotations
"B", # flake8-bugbear
"C4", # flake8-comprehensions
"D", # pydocstyle
"E", # pycodestyle errors
"F", # pyflakes
"I", # isort
"N", # pep8-naming
"PL", # pylint
"SIM", # flake8-simplify
"UP", # pyupgrade
"W", # pycodestyle warnings
]
ignore = [
"ANN401", # Allow Any types
]
[tool.ruff.lint.per-file-ignores]
"__init__.py" = ["D104", "F401"]
"tests/**/test_*.py" = ["ANN", "PL"]
"tests/**/*.py" = ["D"]
[tool.ruff.lint.pydocstyle]
convention = "google"