-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
50 lines (44 loc) · 1.1 KB
/
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
41
42
43
44
45
46
47
48
49
50
[tool.poetry]
name = "papis-extract"
version = "0.2.0"
description = ""
authors = ["Marty Oehme <[email protected]>"]
license = "GPL-3.0-or-later"
readme = "README.md"
packages = [{ include = "papis_extract" }]
homepage = "https://git.martyoeh.me/Marty/papis-extract"
repository = "https://github.com/marty-oehme/papis-extract"
keywords = [
"papis",
"pdf",
"biblatex",
"bibtex",
"bibliography",
"reference manager",
"research",
"science",
]
[tool.poetry.dependencies]
python = "^3.11"
pymupdf = "^1.24.2"
levenshtein = "^0.25.1"
papis = "^0.13"
click = "^8.1.7"
whoosh = { version = "^2.7.4", optional = true }
python-magic = "^0.4.27"
chevron = "^0.14.0"
beautifulsoup4 = { version = "^4.12.3", optional = true }
[tool.poetry.extras]
whoosh = ["whoosh"]
pocketbook = ["beautifulsoup4"]
[tool.poetry.group.dev.dependencies]
pytest = "^7.4.0"
coverage = "^7.3.1"
pytest-cov = "^4.1.0"
[tool.poetry.plugins."papis.command"]
extract = "papis_extract:main"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.pyright]
typeCheckingMode = "strict"