Datasets:
[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" | |