-
-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathpyproject.toml
33 lines (30 loc) · 1.02 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
33
[tool.poetry]
name = "german-nouns"
version = "1.2.5"
description = "A list of ~100,000 German nouns and their grammatical properties compiled from WiktionaryDE as CSV file. Plus a module to look up the data and parse compound words."
authors = ["Gregor Weichbrodt <[email protected]>"]
license = "CC BY-SA 4.0"
readme = "README.md"
homepage = "https://github.com/gambolputty/german-nouns"
repository = "https://github.com/gambolputty/german-nouns"
keywords = ["german", "nouns", "words", "compound words", "lookup", "wiktionary", "nlp"]
classifiers = [
"Programming Language :: Python :: 3.8",
"License :: Other/Proprietary License",
"Operating System :: OS Independent",
"Natural Language :: German",
"Topic :: Text Processing"
]
include = [
"CHANGELOG.md",
"LICENSE",
]
[tool.poetry.dependencies]
python = "^3.8"
wiktionary-de-parser = "^0.9.2"
[tool.poetry.dev-dependencies]
pytest = "^6.2.5"
black = "^22.6.0"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"