We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 079fc30 commit d7742d8Copy full SHA for d7742d8
1 file changed
pyproject.toml
@@ -17,6 +17,25 @@ dependencies = [
17
"typing-extensions (>=4.7.1)",
18
]
19
20
+# PEP 621 optional-dependency groups so consumers can `pip install
21
+# '.[test]'` without poetry. The same packages are also listed under
22
+# `[tool.poetry.group.dev.dependencies]` below for poetry users — the
23
+# duplication is intentional and keeps both toolchains workable.
24
+[project.optional-dependencies]
25
+test = [
26
+ "pytest >= 7.2.1",
27
+ "pytest-cov >= 2.8.1",
28
+ "requests >= 2.32.0",
29
+]
30
+dev = [
31
32
33
+ "tox >= 3.9.0",
34
+ "flake8 >= 4.0.0",
35
+ "types-python-dateutil >= 2.8.19.14",
36
+ "mypy >= 1.5",
37
38
+
39
[project.urls]
40
Repository = "https://github.com/client-api/pve-python"
41
0 commit comments