-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
91 lines (80 loc) · 2.07 KB
/
pyproject.toml
File metadata and controls
91 lines (80 loc) · 2.07 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
[build-system]
requires = ["hatchling >= 1.26", "hatch-vcs>=0.3"]
build-backend = "hatchling.build"
[project]
name = "aas-cli"
dynamic = ["version"]
authors = [{ name = "Peter Stein", email = "peter.stein@dfki.de" }]
description = "A Python Command-Line Interface (CLI) 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 = [
"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",
]
keywords = [
"aas",
"asset-administration-shell",
"basyx",
"eclipse-basyx",
"industry40",
"i40",
"digital-twin",
"cli",
"typer",
"rest-client",
"python",
]
dependencies = [
"shellsmith>=0.4.0",
"typer",
]
[project.optional-dependencies]
test = [
"mypy",
"pytest",
"pytest-cov",
"ruff",
]
[project.scripts]
aas = "aas_cli.app:main"
[project.urls]
Homepage = "https://github.com/SmartFactory-KL/aas-cli"
Issues = "https://github.com/SmartFactory-KL/aas-cli/issues"
Documentation = "https://shellsmith.pages.dev/cli/"
[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"