-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
48 lines (40 loc) · 1.05 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
[build-system]
requires = [ "poetry>=0.12",]
build-backend = "poetry.masonry.api"
[tool.poetry]
name = "opsi-deploy-client-agent"
version = "4.3.0.2"
description = "tool to deploy the opsi-client-agent on linux, windows and macOS clients"
homepage = "https://www.opsi.org"
license = "AGPL-3.0"
authors = [ "uib GmbH <[email protected]>",]
maintainers = [ "uib GmbH <[email protected]>",]
[[tool.poetry.packages]]
include = "opsideployclientagent"
[[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.poetry.scripts]
opsi-deploy-client-agent = "opsideployclientagent.__main__:main"
[tool.poetry.dependencies]
python = ">=3.11,<3.12"
python-opsi-common = ">=4.3,<4.4"
paramiko = "^3.4"
impacket = "^0.11"
smbprotocol = "^1.13"
gssapi = "^1.8"
pydantic-core = "^2.20"
annotated-types = "^0.7"
[tool.ruff.format]
indent-style = "tab"
[tool.poetry.group.dev.dependencies]
ruff = "^0.5"
pytest = "^8.2"
pyinstaller = "^6.9"
mypy = "^1.10"