-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpyproject.toml
33 lines (28 loc) · 1016 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
[tool.poetry]
name = "dehyphen"
version = "0.3.4"
description = "Dehyphenation of broken text (mainly German), i.e., extracted from a PDF"
license = "GPL-3.0-only"
authors = ["Johannes Filter <hi@jfilter.de>"]
repository = "https://github.com/pd3f/dehyphen"
keywords = ["dehyphenation", "nlp", "german", "hyhpens", "pdf"]
classifiers = [
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Topic :: Scientific/Engineering :: Information Analysis",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
]
readme = "README.md"
[tool.poetry.dependencies]
python = ">=3.6"
clean-text = { version = "*", extras = [ "gpl" ] }
pd3f-flair = "*"
[tool.poetry.dev-dependencies]
pytest = "^5.2"
pylint = "^2.5.3"
black = {version = "^19.10b0", allow-prereleases = true}
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"