21 lines
400 B
TOML
21 lines
400 B
TOML
|
|
[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"]
|