pubs-extract/pyproject.toml
Marty Oehme e1a7d9f613
Move plugin to nested folder for easy installation
Moved the plugin files to the directory structure they will have in the
python site-packages directory, being placed within the plugs directory
of the pubs application directory.
2023-01-13 18:50:42 +01:00

20 lines
487 B
TOML

[tool.poetry]
name = "pubs-extract"
version = "0.1.0"
description = "A pdf annotation extraction plugin for pubs bibliography manager"
authors = ["Marty Oehme <marty.oehme@gmail.com>"]
license = "LGPL-3.0"
readme = "README.md"
packages = [{include = "pubs"}]
[tool.poetry.dependencies]
python = "^3.10"
pymupdf = "^1.21.1"
levenshtein = "^0.20.8"
[tool.poetry.group.dev.dependencies]
pubs = "^0.9.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"