Initial version

This commit is contained in:
Alex Selimov 2026-02-12 23:55:07 -05:00
commit 42996b0f4e
31 changed files with 933 additions and 0 deletions

20
pyproject.toml Normal file
View file

@ -0,0 +1,20 @@
[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"]