-
Notifications
You must be signed in to change notification settings - Fork 4
/
pyproject.toml
66 lines (57 loc) · 1.63 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
[build-system]
requires = [ "poetry>=0.12",]
build-backend = "poetry.masonry.api"
[tool.poetry]
name = "opsi-utils"
version = "4.3.11.0"
description = "Utilities for working with opsi"
homepage = "https://www.opsi.org"
license = "AGPL-3.0"
maintainers = [ "uib GmbH <info@uib.de>",]
authors = [ "uib GmbH <info@uib.de>",]
include = [ "opsi-utils_data/**/*",]
[[tool.poetry.packages]]
include = "opsiutils"
[[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-admin = "opsiutils.opsiadmin:main"
opsi-backup = "opsiutils.opsibackup:main"
opsi-convert = "opsiutils.opsiconvert:main"
opsi-makepackage = "opsiutils.opsimakepackage:main"
opsi-newprod = "opsiutils.opsinewprod:main"
opsi-package-manager = "opsiutils.opsipackagemanager:main"
opsi-package-updater = "opsiutils.opsipackageupdater:main"
opsi-setup = "opsiutils.opsisetup:main"
opsi-python = "opsiutils.opsipython:main"
opsi-wakeup-clients = "opsiutils.opsiwakeupclients:main"
opsi-outdated-to-setup = "opsiutils.opsioutdatedtosetup:main"
[tool.poetry.dependencies]
python = ">=3.11,<3.12"
python-opsi = ">=4.3,<4.4"
python-opsi-common = ">=4.3.19.2,<4.4"
python-magic = "^0.4"
annotated-types = "^0.7"
configupdater = "^3.1"
mysqlclient = ">=2.0,<2.2"
paramiko = "^3.2"
pydantic-core = "^2.18"
pyzsync = "^1.2"
[tool.ruff.format]
indent-style = "tab"
[tool.poetry.dependencies.distro]
platform = "linux"
version = "^1.5"
[tool.poetry.group.dev.dependencies]
mypy = "^1.0"
pyinstaller = "^6.5"
pytest = "^8.1"
pytest-cov = "^5.0"
ruff = "^0.5"