Files
KomTagger/pyproject.toml
2025-04-24 18:35:25 +02:00

31 lines
688 B
TOML

[project]
name = "komtagger"
version = "0.1.0"
description = "Add your description here"
readme = "README.md"
requires-python = ">=3.13"
dependencies = [
"anilistapi",
"komcache",
"komgapi",
"limit>=0.2.3",
"loguru>=0.7.3",
"python-dotenv>=1.0.1",
"requests>=2.32.3",
]
[dependency-groups]
dev = ["bump-my-version>=0.32.1"]
test = ["pytest>=8.3.4", "pytest-cov>=6.1.1"]
[tool.uv.sources]
anilistapi = { workspace = true }
komgapi = { workspace = true }
komcache = { workspace = true }
[tool.pytest.ini_options]
testpaths = ["tests"]
addopts = "--cov=src --cov-report=term-missing"
[tool.coverage.run]
omit = ["main.py", "test.py", "tests/*", "__init__.py"]