-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
40 lines (34 loc) · 885 Bytes
/
pyproject.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
[project]
name = "retrolire"
authors = [{name="thjbdvlt"}]
version = "0.1.0"
description = "command line bibliography management with fzf and postgresql"
readme = "README.md"
requires-python = ">=3.9"
dependencies = [
"psycopg",
"orjson",
"pdfannots @ git+https://github.com/thjbdvlt/pdfannots",
"pymupdf",
"isbntools",
]
[project.urls]
Homepage = "https://github.com/thjbdvlt/retrolire"
[project.scripts]
jsonarray2psql = "csl2psql.json2psql.cli:main"
csljson-update = "csl2psql.cslminitools.cli:main"
csl2psql = "csl2psql.cli:main"
pdfannots = "pdfannots.cli:main"
fetchref = "fetchref.cli:main"
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages]
find = {}
[tool.ruff]
exclude = []
line-length = 72
[tool.ruff.format]
quote-style = "double"
indent-style = "space"
docstring-code-format = false