forked from keksiqc/ctrld-sync
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
49 lines (42 loc) · 1.04 KB
/
pyproject.toml
File metadata and controls
49 lines (42 loc) · 1.04 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
[project]
name = "ctrld-sync"
version = "0.1.0"
description = "Simple script which syncs defined Control D folders"
readme = "README.md"
requires-python = ">=3.13"
dependencies = ["httpx>=0.28.1", "python-dotenv>=1.1.1", "pyyaml>=6.0"]
[project.optional-dependencies]
dev = [
"pytest>=9.0.3",
"pytest-mock>=3.10.0",
"pytest-xdist>=3.0.0",
"pytest-benchmark>=4.0.0",
"pytest-cov>=4.0.0",
"pre-commit>=3.0.0",
"mypy>=1.9",
"types-PyYAML>=6.0",
"ruff>=0.9.0",
]
[tool.coverage.run]
source = ["."]
omit = ["tests/*", "test_main.py", ".venv/*", ".venv/**"]
[tool.coverage.report]
show_missing = true
fail_under = 55
[tool.mypy]
python_version = "3.13"
strict = false
ignore_missing_imports = true
check_untyped_defs = true
warn_return_any = true
warn_unused_ignores = true
[tool.ruff.lint]
select = ["E", "W", "F", "N", "PERF", "RET", "SIM", "UP"]
ignore = ["E501", "SIM105", "SIM115", "SIM117"]
[tool.pytest.ini_options]
addopts = "-p no:cacheprovider"
testpaths = ["tests", "test_main.py"]
[dependency-groups]
dev = [
"mccabe>=0.7.0",
]