-
Notifications
You must be signed in to change notification settings - Fork 8
/
pyproject.toml
36 lines (31 loc) · 998 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
[tool.poetry]
name = "pd3f"
version = "0.4.0"
description = "Reconstruct the original continuous text from PDFs with language models"
license = "AGPL-3.0-only"
authors = ["Johannes Filter <[email protected]>"]
repository = "https://github.com/pd3f/pd3f-core"
keywords = ["pdf", "nlp", "german", "text-extraction"]
classifiers = [
"Programming Language :: Python :: 3.8",
"License :: OSI Approved :: GNU Affero General Public License v3",
"Topic :: Scientific/Engineering :: Information Analysis",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
]
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.8"
parsr-client = "3.1"
joblib = "*"
clean-text = { version = "*", extras = [ "gpl" ] }
dehyphen = "^0.3.0"
textdistance = "*"
shapely = "*"
[tool.poetry.dev-dependencies]
pytest = "^5.2"
jupyterlab = "*"
black = {version = "^19.10b0", allow-prereleases = true}
pdoc3 = "^0.9.2"
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"