-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpyproject.toml
More file actions
32 lines (29 loc) · 901 Bytes
/
pyproject.toml
File metadata and controls
32 lines (29 loc) · 901 Bytes
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
[tool.poetry]
name = "text-cleaning"
version = "1.0.0"
description = "A powerful text cleaner for Japanese web texts"
license = "MIT"
authors = ["Kurohashi-Kawahara Lab, Kyoto Univ <contact@nlp.ist.i.kyoto-u.ac.jp>"]
maintainers = ["Takashi Kodama <kodama@nlp.ist.i.kyoto-u.ac.jp>", "Nobuhiro Ueda <ueda@nlp.ist.i.kyoto-u.ac.jp>"]
readme = "README.md"
repository = "https://github.com/ku-nlp/text-cleaning"
keywords = [
"NLP"
]
classifiers = [
# "License :: OSI Approved :: BSD License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9"
]
[tool.poetry.dependencies]
python = "^3.7"
mojimoji = "*"
neologdn = "*"
joblib = "*"
[tool.poetry.dev-dependencies]
pytest = "^6.2"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"