citer/pyproject.toml

21 lines
400 B
TOML
Raw Permalink Normal View History

2026-02-12 23:55:07 -05:00
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "citer"
version = "0.1.0"
description = "CLI to create APA style citations from arXiv IDs or DOIs"
readme = "README.md"
requires-python = ">=3.9"
dependencies = [
"requests>=2.31.0",
]
[project.scripts]
citer = "citer.cli:main"
[tool.pytest.ini_options]
addopts = "-q"
testpaths = ["tests"]