-
Notifications
You must be signed in to change notification settings - Fork 21
/
pyproject.toml
32 lines (29 loc) · 1.09 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
[tool.poetry]
name = "remarks"
version = "0.3.1"
description = "Extract annotations (highlights and scribbles) from PDF, EPUB, and notebooks marked with reMarkable™ paper tablets. Export to Markdown, PDF, PNG, and SVG."
authors = ["lucasrla <[email protected]>"]
readme = "README.md"
license = "GPL-3.0-only"
repository = "https://github.com/lucasrla/remarks"
keywords = ["remarkable-tablet", "remarkable", "markdown", "png", "pdf", "svg", "annotations", "highlights", "scribbles"]
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Console",
"Topic :: Multimedia :: Graphics :: Graphics Conversion",
"Topic :: Utilities"
]
# https://python-poetry.org/docs/dependency-specification/
[tool.poetry.dependencies]
python = "^3.10.9"
Shapely = "^2.0.1"
PyMuPDF = "^1.21.1"
[tool.poetry.dev-dependencies]
black = "^22.12.0"
flake8 = "^6.0.0"
pytest = "^7.2.2"
[build-system]
# https://python-poetry.org/docs/pyproject/#poetry-and-pep-517
# https://github.com/python-poetry/poetry/releases/tag/1.3.0
requires = ["poetry-core>=1.4.0"]
build-backend = "poetry.core.masonry.api"