22 lines
554 B
TOML
22 lines
554 B
TOML
[project]
|
|
name = "anilistapi"
|
|
version = "0.1.1"
|
|
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"]
|
|
|
|
[tool.pytest.ini_options]
|
|
testpaths = ["tests"]
|
|
addopts = "--cov=src --cov-report=term-missing"
|
|
[tool.coverage.run]
|
|
omit = ["main.py", "test.py", "tests/*", "__init__.py"]
|