File size: 697 Bytes
d59110e f782a76 d59110e 1a4b1b3 d59110e faa2e26 d59110e f782a76 d59110e f782a76 d59110e |
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 |
[tool.poetry]
name = "huggingface-datasets-jglue"
version = "0.1.0"
description = "Dataset loading script for JGLUE: Japanese General Language Understanding Evaluation"
authors = ["Shunsuke KITADA <shunsuke.kitada.0831@gmail.com>"]
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.8"
datasets = "^2.10.0"
beautifulsoup4 = "^4.11.2"
mecab-python3 = "^1.0.6"
pyknp = "^0.6.1"
mojimoji = "^0.0.12"
[tool.poetry.group.dev.dependencies]
ruff = "^0.0.241"
black = "^23.1.0"
mypy = "^1.0.1"
pytest = "^7.2.1"
[tool.ruff]
target-version = "py38"
ignore = [
"E501", # line too long, handled by black
]
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
|