Files
anilistAPI/pyproject.toml
2025-12-06 09:02:54 +01:00

25 lines
586 B
TOML

[project]
name = "anilistapi"
version = "0.1.0"
description = "Add your description here"
readme = "README.md"
authors = [{ name = "WorldTeacher", email = "coding_contact@pm.me" }]
requires-python = ">=3.13"
dependencies = ["limit>=0.2.3", "requests>=2.32.3"]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[dependency-groups]
test = [
"pytest>=8.3.4",
"pytest-cov>=6.2.1",
]
[tool.pytest.ini_options]
testpaths = ["tests"]
addopts = "--cov=src --cov-report=term-missing"
[tool.coverage.run]
omit = ["main.py", "test.py", "tests/*", "__init__.py"]