-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
69 lines (59 loc) · 1.4 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
[build-system]
requires = [ "poetry-core>=1.0.0",]
build-backend = "poetry.core.masonry.api"
[tool.poetry]
name = "opsi-cli"
version = "4.3.12.2"
description = "opsi command line interface"
homepage = "https://www.opsi.org"
license = "AGPL-3.0"
authors = [ "uib GmbH <info@uib.de>",]
maintainers = [ "uib GmbH <info@uib.de>",]
[[tool.poetry.packages]]
include = "opsicli"
[[tool.poetry.source]]
name = "uibpypi"
url = "https://pypi.uib.gmbh/simple"
priority = "primary"
[[tool.poetry.source]]
name = "PyPI"
priority = "supplemental"
[tool.ruff]
line-length = 140
[tool.mypy]
disallow_untyped_calls = true
disallow_untyped_defs = true
disallow_incomplete_defs = true
follow_imports = "silent"
incremental = false
[tool.poetry.dependencies]
"ruamel.yaml" = "^0.18"
annotated-types = "^0.7"
click = "^8.1"
msgpack = "^1.0"
orjson = "^3.6"
pipreqs = "^0.5"
prompt-toolkit = "^3.0.33"
pydantic = "^2.5.1"
pydantic-core = "^2.18"
python = "^3.11,<3.12"
python-opsi = ">=4.3.0.0,<4.4"
python-opsi-common = ">=4.3.22,<4.4"
rich-click = ">=1.3,<1.8"
starlette = "^0.38"
websockets = "^13.0"
py-purecrypt = "^0.1.1"
[tool.poetry.scripts]
opsi-cli = "opsicli.__main__:main"
[tool.ruff.format]
indent-style = "tab"
[tool.poetry.dependencies.pywin32]
platform = "win32"
version = ">=308"
[tool.poetry.group.dev.dependencies]
mypy = "^1.4"
pyinstaller = "^6.0"
pytest = "^8.0"
pytest-cov = "^5.0"
ruff = "^0.6"
types-requests = "^2.31"