21 lines
525 B
TOML
21 lines
525 B
TOML
[build-system]
|
|
requires = ["setuptools>=68"]
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
[project]
|
|
name = "citegeist"
|
|
version = "0.1.0"
|
|
description = "BibTeX-native tooling for bibliography augmentation, citation graphs, and search"
|
|
requires-python = ">=3.10"
|
|
dependencies = ["pybtex==0.25.1"]
|
|
|
|
[project.scripts]
|
|
citegeist = "citegeist.cli:main"
|
|
|
|
[tool.pytest.ini_options]
|
|
pythonpath = ["src"]
|
|
testpaths = ["tests"]
|
|
markers = [
|
|
"live: tests that call live external scholarly APIs and are skipped unless explicitly enabled",
|
|
]
|