-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpyproject.toml
More file actions
40 lines (35 loc) · 894 Bytes
/
Copy pathpyproject.toml
File metadata and controls
40 lines (35 loc) · 894 Bytes
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
[project]
name = "restic_compose_backup"
version = "0.0.0"
description = "Backup Docker Compose volumes and databases with Restic"
requires-python = ">=3.12"
dependencies = [
'docker>=7.1.0',
]
[dependency-groups]
dev = [
"black>=25.1.0",
"pre-commit>=4.2.0",
"pytest>=7.4.0",
"pytest-cov>=7.0.0",
"ruff>=0.12.3",
]
[tool.pytest.ini_options]
pythonpath = ["."]
testpaths = ["tests"]
python_files = ["tests.py", "test_*.py"]
python_classes = ["*Tests"]
python_functions = ["test_*"]
markers = [
"integration: marks tests as integration tests",
"unit: marks tests as unit tests",
]
[project.scripts]
restic-compose-backup = "restic_compose_backup.cli:main"
rcb = "restic_compose_backup.cli:main"
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
where = ["."]
include = ["restic_compose_backup"]