-
Notifications
You must be signed in to change notification settings - Fork 8
/
pyproject.toml
44 lines (39 loc) · 1.17 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
34
35
36
37
38
39
40
41
42
43
44
[tool.poetry]
name = "wiktionary-de-parser"
version = "0.12.0"
description = "Extracts data from German Wiktionary dump files."
authors = ["Gregor Weichbrodt <gregorweichbrodt@gmail.com>"]
license = "MIT"
readme = "README.md"
homepage = "https://github.com/gambolputty/wiktionary-de-parser"
repository = "https://github.com/gambolputty/wiktionary-de-parser"
keywords = ["wiktionary", "xml", "parser", "data-extraction", "german", "nlp"]
classifiers = [
"Programming Language :: Python :: 3.7",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Natural Language :: German",
"Topic :: Text Processing :: Markup :: XML"
]
include = [
"CHANGELOG.md",
"LICENSE.txt",
]
[tool.poetry.urls]
"Bug Tracker" = "https://github.com/gambolputty/wiktionary-de-parser/issues"
[tool.poetry.dependencies]
python = "^3.11"
lxml = "^5.1.0"
mwparserfromhell = "^0.6.6"
black = "^24.1.1"
pydantic = "^2.6.0"
requests = "^2.31.0"
tqdm = "^4.66.1"
[tool.poetry.dev-dependencies]
pytest = "^7.1.2"
black = "*"
[tool.poetry.group.dev.dependencies]
ipykernel = "^6.29.0"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"