Datasets:
File size: 527 Bytes
6324c60 |
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 |
[tool.poetry]
name = "huggingface-datasets-drawbench"
version = "0.1.0"
description = ""
authors = ["Shunsuke KITADA <shunsuke.kitada.0831@gmail.com>"]
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.9"
datasets = "^2.14.5"
[tool.poetry.group.dev.dependencies]
ruff = "^0.0.291"
black = "^23.9.1"
mypy = "^1.5.1"
pytest = "^7.4.2"
[tool.ruff]
target-version = "py38"
ignore = [
"E501", # line too long, handled by black
]
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
|