-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
73 lines (63 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
67
68
69
70
71
72
73
[tool.poetry]
name = "cgyle"
version = "1.1.4"
description = "cgyle - container preload"
license = "GPL-3.0-or-later"
readme = "README.rst"
# homepage = ""
# documentation = ""
# repository = ""
authors = [
"Marcus Schäfer <marcus.schaefer@suse.com>",
]
maintainers = [
"Marcus Schäfer <marcus.schaefer@suse.com>",
]
packages = [
{ include = "cgyle"},
]
include = [
{ path = "tools", format = "sdist" },
{ path = ".bumpversion.cfg", format = "sdist" },
{ path = ".coverage*", format = "sdist" },
{ path = ".virtualenv.requirements*.txt", format = "sdist" },
{ path = "package", format = "sdist" },
{ path = "test", format = "sdist" },
{ path = "tox.ini", format = "sdist" },
{ path = "systemd", format = "sdist" },
]
classifiers = [
# classifier: http://pypi.python.org/pypi?%3Aaction=list_classifiers
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Operating System :: POSIX :: Linux",
"Topic :: System :: Operating System",
]
[tool.poetry.urls]
# "Bug Tracker" = ""
[tool.poetry.dependencies]
python = "^3.9"
docopt-ng = ">=0.9.0"
requests = ">=2.25.0"
PyYAML = ">=5.4.0"
setuptools = ">=50"
psutil = "*"
[tool.poetry.scripts]
cgyle = "cgyle.cgyle:main"
[tool.poetry.group.test]
[tool.poetry.group.test.dependencies]
# python unit testing framework
pytest = ">=6.2.0"
pytest-cov = "*"
pytest-xdist = "*"
pytest-container = "*"
# type checking
mypy = ">=0.971"
types-requests = "*"
types-mock = "*"
[tool.poetry.group.style]
[tool.poetry.group.style.dependencies]
flake8 = ">=4.0.0"
[build-system]
requires = ["poetry-core>=1.2.0"]
build-backend = "poetry.core.masonry.api"