-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
80 lines (70 loc) · 1.38 KB
/
pyproject.toml
File metadata and controls
80 lines (70 loc) · 1.38 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
[project]
name = "vilocify-sdk"
version = "0.7.1"
requires-python = ">=3.12,<4.0"
license = "MIT"
description = "Vilocify SDK built atop APIv2"
readme = "README.md"
authors = [
{ name = "Wolfgang Popp", email = "popp.wolfgang@siemens.com" }
]
dependencies = [
"requests (>=2.31.0,<3.0.0)",
"cyclonedx-python-lib (>=11.0.0,<12.0.0)",
"click (>=8.1.7,<9.0.0)"
]
[project.urls]
homepage = "https://github.com/siemens/vilocify-sdk-python"
issues = "https://github.com/siemens/vilocify-sdk-python/issues"
[project.scripts]
vilocify = 'vilocify.cli:main'
[tool.poetry]
packages = [
{ include = "vilocify" }
]
[tool.poetry.group.dev.dependencies]
pytest = "^9.0.0"
ruff = "^0.15.0"
mypy = "^1.11.2"
types-requests = "^2.32.0.20240914"
requests-mock = "^1.12.1"
editorconfig-checker = "^3.2.1"
[build-system]
requires = ["poetry-core>=2.0.0,<3.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.pytest.ini_options]
log_cli = "True"
[tool.ruff]
line-length = 120
target-version = "py312"
[tool.ruff.lint]
select = [
"C4",
"C90",
"DTZ",
"E",
"EXE",
"F",
"FIX",
"G",
"I",
"INP",
"LOG",
"N",
"PL",
"PT",
"PTH",
"RET",
"RUF",
"S",
"SIM",
"UP",
"W",
"YTT",
"TCH",
"ANN"
]
[tool.ruff.lint.per-file-ignores]
"tests/*" = ["S101"]
[tool.ruff.lint.flake8-annotations]
suppress-none-returning = true