-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
45 lines (41 loc) · 903 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
37
38
39
40
41
42
43
44
45
[tool.poetry]
name = "wikiparse"
version = "0.1.0"
description = "Wiktionary parsing for Finnish word definitions"
authors = ["Frankie Robertson <[email protected]>"]
license = "Apache-2.0"
include = ["wikiparse/py.typed"]
[tool.poetry.dependencies]
python = "^3.6"
sqlitedict = "*"
pandas = "*"
ujson = "*"
tblib = "*"
mediawiki-utilities = "*"
mwparserfromhell = "*"
boltons = "*"
click-log = "*"
mwxml = "*"
sqlalchemy = "*"
more-itertools = "*"
langdetect = "^1.0"
nltk = "^3.4"
wordfreq = "^2.2"
finntk = ">=0.0.68"
eralchemy = "^1.2.10"
typing_extensions = "^3.7.4"
snakemake = "^5.16.0"
orjson = "^3.0.0"
prettyprinter = "^0.18.0"
[tool.poetry.dev-dependencies]
"nose2" = "*"
flake8 = "^3.5.0"
pre-commit = "^1.10.2"
mypy = "*"
black = "^19.10b0"
pytest = "^5.4.1"
[tool.poetry.extras]
pgsql = ["psycopg2"]
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"