-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpyproject.toml
More file actions
68 lines (59 loc) · 1.25 KB
/
pyproject.toml
File metadata and controls
68 lines (59 loc) · 1.25 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
[project]
name = "python-opsi-legacy"
version = "4.3.11.0"
description = "The opsi python library"
readme = "README.md"
license = "AGPL-3.0-only"
requires-python = ">=3.11,<3.15"
dependencies = [
"colorlog>=6.6",
"cryptography>=42.0",
"distro>=1.6",
"lz4>=4.0",
"msgpack>=1.0",
"packaging>=24.1,<26.0",
"pefile>=2022.5",
"pexpect>=4.8",
"psutil>=6.0",
"pyasn1>=0.6",
"pycryptodome>=3.10",
"python-opsi-common>=4.3,<4.4",
"python-pam>=2.0",
"pywin32>=303; platform_system == 'Windows'",
"pyzsync>=1.2",
"ruyaml>=0.91",
"service-identity>=24.1",
"six>=1.16",
"sqlalchemy>=1.4,<2.0",
"tomlkit>=0.13",
"typing-extensions>=4.12",
"wmi>=1.5; platform_system == 'Windows'",
]
[[project.authors]]
name = "uib GmbH"
email = "info@uib.de"
[[project.maintainers]]
name = "uib GmbH"
email = "info@uib.de"
[project.urls]
Homepage = "https://www.opsi.org"
[dependency-groups]
dev = [
"mock>=5.0",
"pytest-asyncio>=0.24",
"pytest-cov>=5.0",
"pytest>=8.3",
"ruff>=0.7",
]
[tool.uv]
extra-index-url = ["https://pypi.uib.gmbh/simple"]
index-strategy = "unsafe-best-match"
package = true
[tool.ruff]
line-length = 140
[tool.ruff.format]
indent-style = "tab"
[tool.ruff.lint]
ignore = ["F405"]
[tool.setuptools.packages.find]
include = ["opsi_legacy", "opsi_legacy.*"]