2022-02-08 23:24:36 +00:00
|
|
|
[tool.poetry]
|
|
|
|
name = "wordfreq"
|
2022-09-26 21:47:06 +00:00
|
|
|
version = "3.0.2"
|
2022-02-08 23:24:36 +00:00
|
|
|
description = "Look up the frequencies of words in many languages, based on many sources of data."
|
|
|
|
authors = ["Robyn Speer <rspeer@arborelia.net>"]
|
|
|
|
license = "MIT"
|
2022-03-10 23:33:42 +00:00
|
|
|
readme = "README.md"
|
2022-03-11 15:43:37 +00:00
|
|
|
homepage = "https://github.com/rspeer/wordfreq/"
|
2022-02-08 23:24:36 +00:00
|
|
|
|
|
|
|
[tool.poetry.dependencies]
|
|
|
|
python = "^3.7"
|
|
|
|
msgpack = ">= 1.0"
|
|
|
|
langcodes = ">= 3.0"
|
2022-09-26 21:47:06 +00:00
|
|
|
regex = ">= 2021.7.6"
|
2022-02-18 16:33:28 +00:00
|
|
|
ftfy = ">= 6.1"
|
2022-09-25 05:26:17 +00:00
|
|
|
mecab-python3 = {version = "^1.0.5", optional = true}
|
|
|
|
ipadic = {version = "^1.0.0", optional = true}
|
|
|
|
mecab-ko-dic = {version = "^1.0.0", optional = true}
|
|
|
|
jieba = {version = ">=0.42", optional = true}
|
2022-02-08 23:24:36 +00:00
|
|
|
|
|
|
|
[tool.poetry.dev-dependencies]
|
|
|
|
pytest = "^6.2.5"
|
|
|
|
mecab-python3 = "^1.0.4"
|
|
|
|
jieba = ">= 0.42"
|
|
|
|
ipadic = "^1.0.0"
|
|
|
|
mecab-ko-dic = "^1.0.0"
|
|
|
|
ipython = ">=7"
|
|
|
|
black = "^22.1.0"
|
2022-02-18 16:33:28 +00:00
|
|
|
flake8 = "^4.0.1"
|
|
|
|
types-setuptools = "^57.4.9"
|
2022-04-01 16:11:39 +00:00
|
|
|
mypy = "^0.931"
|
2022-02-08 23:24:36 +00:00
|
|
|
|
2022-03-11 15:43:37 +00:00
|
|
|
[tool.poetry.extras]
|
2022-09-25 05:26:17 +00:00
|
|
|
cjk = ["mecab-python3", "ipadic", "mecab-ko-dic", "jieba"]
|
2022-03-11 15:43:37 +00:00
|
|
|
mecab = ["mecab-python3", "ipadic", "mecab-ko-dic"]
|
2022-09-25 05:26:17 +00:00
|
|
|
jieba = ["jieba"]
|
2022-03-11 15:43:37 +00:00
|
|
|
|
2022-02-08 23:24:36 +00:00
|
|
|
[build-system]
|
|
|
|
requires = ["poetry-core>=1.0.0"]
|
|
|
|
build-backend = "poetry.core.masonry.api"
|