-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
68 lines (61 loc) · 1.4 KB
/
pyproject.toml
File metadata and controls
68 lines (61 loc) · 1.4 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 = "glrd"
dynamic = ["version"]
[tool.poetry]
name = "glrd"
version = "0.0.0"
description = "Garden Linux Release Database"
authors = ["Garden Linux Team"]
readme = "README.md"
packages = [{include = "glrd"}]
[tool.poetry.dependencies]
python = "^3.13"
poetry-dynamic-versioning = "*"
boto3 = "*"
deepdiff = "*"
jsonschema = "*"
PyYAML = "*"
pytz = "*"
python-dateutil = "*"
requests = "*"
tabulate = "*"
python-gardenlinux-lib = { git = "https://github.com/gardenlinux/python-gardenlinux-lib.git", branch = "0.6.0" }
[tool.poetry.group.dev.dependencies]
pytest = "*"
pytest-cov = "*"
black = "*"
flake8 = "*"
autopep8 = "*"
[tool.poetry-dynamic-versioning]
enable = true
vcs = "git"
style = "pep440"
pattern = '''(?x)
v(?P<base>\d+\.\d+\.\d+)
'''
strict = true
dirty = true
metadata = true
tagged-metadata = false
[tool.poetry.scripts]
glrd-update = "glrd.update:main"
glrd-manage = "glrd.manage:main"
glrd = "glrd.query:main"
[build-system]
requires = ["poetry-core>=1.0.0", "poetry-dynamic-versioning>=1.0.0,<2.0.0"]
build-backend = "poetry_dynamic_versioning.backend"
[tool.pytest.ini_options]
testpaths = ["tests"]
python_files = ["test_*.py"]
python_classes = ["Test*"]
python_functions = ["test_*"]
addopts = [
"-v",
"--tb=short",
"--strict-markers",
"--disable-warnings",
]
markers = [
"integration: marks tests as integration tests",
"unit: marks tests as unit tests",
]