2023-08-28 08:28:06 +00:00
|
|
|
[tool.poetry]
|
|
|
|
name = "papis-extract"
|
2024-01-18 17:24:19 +00:00
|
|
|
version = "0.2.0"
|
2023-08-28 08:28:06 +00:00
|
|
|
description = ""
|
|
|
|
authors = ["Marty Oehme <marty.oehme@gmail.com>"]
|
2024-01-23 09:12:41 +00:00
|
|
|
license = "GPL-3.0-or-later"
|
2023-08-28 08:28:06 +00:00
|
|
|
readme = "README.md"
|
2024-01-24 11:05:41 +00:00
|
|
|
packages = [{ include = "papis_extract" }]
|
2024-01-23 09:12:41 +00:00
|
|
|
homepage = "https://git.martyoeh.me/Marty/papis-extract"
|
|
|
|
repository = "https://github.com/marty-oehme/papis-extract"
|
2024-01-24 11:05:41 +00:00
|
|
|
keywords = [
|
|
|
|
"papis",
|
|
|
|
"pdf",
|
|
|
|
"biblatex",
|
|
|
|
"bibtex",
|
|
|
|
"bibliography",
|
|
|
|
"reference manager",
|
|
|
|
"research",
|
|
|
|
"science",
|
|
|
|
]
|
2023-08-28 08:28:06 +00:00
|
|
|
|
|
|
|
[tool.poetry.dependencies]
|
|
|
|
python = "^3.11"
|
2024-05-07 08:55:14 +00:00
|
|
|
pymupdf = "^1.24.2"
|
|
|
|
levenshtein = "^0.25.1"
|
2023-08-28 08:28:06 +00:00
|
|
|
papis = "^0.13"
|
|
|
|
click = "^8.1.7"
|
2023-09-19 15:34:33 +00:00
|
|
|
whoosh = { version = "^2.7.4", optional = true }
|
2023-08-28 08:28:06 +00:00
|
|
|
python-magic = "^0.4.27"
|
2023-08-29 11:49:22 +00:00
|
|
|
chevron = "^0.14.0"
|
2024-01-24 07:55:43 +00:00
|
|
|
beautifulsoup4 = { version = "^4.12.3", optional = true }
|
2023-08-28 08:28:06 +00:00
|
|
|
|
2023-09-19 15:34:33 +00:00
|
|
|
[tool.poetry.extras]
|
|
|
|
whoosh = ["whoosh"]
|
2024-01-24 07:55:43 +00:00
|
|
|
pocketbook = ["beautifulsoup4"]
|
2023-08-29 10:15:10 +00:00
|
|
|
|
|
|
|
[tool.poetry.group.dev.dependencies]
|
|
|
|
pytest = "^7.4.0"
|
2023-09-22 19:53:55 +00:00
|
|
|
coverage = "^7.3.1"
|
2023-10-17 19:16:40 +00:00
|
|
|
pytest-cov = "^4.1.0"
|
2023-08-29 10:15:10 +00:00
|
|
|
|
2023-09-19 15:34:33 +00:00
|
|
|
[tool.poetry.plugins."papis.command"]
|
|
|
|
extract = "papis_extract:main"
|
|
|
|
|
2023-08-28 08:28:06 +00:00
|
|
|
[build-system]
|
|
|
|
requires = ["poetry-core"]
|
|
|
|
build-backend = "poetry.core.masonry.api"
|
2024-06-12 09:16:32 +00:00
|
|
|
|
|
|
|
[tool.pyright]
|
|
|
|
typeCheckingMode = "strict"
|