-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
128 lines (115 loc) · 3.02 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
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
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
[build-system]
requires = [ "poetry>=0.12",]
build-backend = "poetry.masonry.api"
[tool.poetry]
name = "opsiconfd"
version = "4.3.28.10"
description = "opsi configuration service"
homepage = "https://www.opsi.org"
license = "AGPL-3.0"
maintainers = [ "uib GmbH <[email protected]>",]
authors = [ "uib GmbH <[email protected]>",]
include = [ "run-opsiconfd", "opsiconfd_data/**/*",]
[[tool.poetry.source]]
name = "uibpypi"
url = "https://pypi.uib.gmbh/simple"
priority = "primary"
[[tool.poetry.source]]
name = "PyPI"
priority = "supplemental"
[tool.mypy]
disallow_untyped_calls = true
disallow_untyped_defs = true
disallow_incomplete_defs = true
follow_imports = "silent"
[tool.ruff]
line-length = 140
target-version = "py311"
[tool.poetry.scripts]
opsiconfd = "opsiconfd.__main__:main"
[tool.poetry.dependencies]
acme = "^3.0"
aiofiles = "^24.1"
aiohttp = "^3.7"
aiologger = "^0.7"
aiozeroconf = "^0.1"
annotated-types = "^0.7"
click = "^8.1"
configargparse = "^1.4"
configupdater = "^3.1"
distro = "^1.5"
fastapi = "^0.115"
greenlet = "^3.0"
hiredis = "^3.0"
httpx = "^0.28"
itsdangerous = "^2.0"
mysqlclient = ">=2.0,<2.2"
netifaces = "^0.11"
objgraph = "^3.5"
py3dns = "^4.0"
pydantic = "^2.4"
pydantic-core = "^2.18"
pympler = "^1.0"
pymysql = "^1.1"
pyotp = "^2.8"
python = ">=3.11,<3.14"
python-magic = "^0.4"
python-multipart = "^0.0"
python-opsi = ">=4.3.6,<4.4"
python-opsi-common = ">=4.3.22,<4.4"
python-opsi-system = ">=4.3.2.1,<4.4"
python3-saml = "1.16.0"
qrcode = "^8.0"
redis = "^5.0"
rich = "^13.0"
six = "^1.16"
starlette = "^0.39"
uvicorn = "^0.34"
uvloop = "^0.21"
websockets = "^14.1"
werkzeug = "^3.0"
wsgidav = "^4.3"
wsproto = "^1.2"
[[tool.poetry.dependencies.lxml]]
markers = "platform_machine == 'x86_64'"
file = "binary-wheels/lxml-5.3.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl"
[[tool.poetry.dependencies.lxml]]
markers = "platform_machine == 'aarch64'"
file = "binary-wheels/lxml-5.3.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl"
[[tool.poetry.dependencies.xmlsec]]
markers = "platform_machine == 'x86_64'"
file = "binary-wheels/xmlsec-1.3.15.dev19+g1104b4c-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl"
[[tool.poetry.dependencies.xmlsec]]
markers = "platform_machine == 'aarch64'"
file = "binary-wheels/xmlsec-1.3.15.dev19+g1104b4c-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl"
[[tool.poetry.dependencies.yappi]]
markers = "platform_machine == 'x86_64'"
version = ">=1.4"
[tool.ruff.format]
indent-style = "tab"
[tool.pytest.ini_options]
asyncio_mode = "auto"
asyncio_default_fixture_loop_scope = "function"
[tool.poetry.group.dev.dependencies]
bandit = "^1.7"
dill = "^0.3"
hypothesis = "^6.32"
idna = "^3.3"
lxml-stubs = "^0.5"
mock = "^5.0"
mypy = "^1.4"
pydevd = "^3.0"
pyinstaller = "^6.10"
pyinstaller-hooks-contrib = "^2024.0"
pytest = "^8.0"
pytest-asyncio = "^0.25"
pytest-cov = "^6.0"
pytest-retry = "^1.6"
pytest-subprocess = "^1.5"
ruff = "^0.8"
types-certifi = "^2021.10"
types-ldap3 = "^2.9"
types-psutil = "^6.1"
types-redis = "^4.1"
types-requests = "^2.27"
wrapt = "^1.14"