File size: 516 Bytes
3ce159a |
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 |
[tool.poetry]
name = "huggingface-datasets-cocoa"
version = "0.1.0"
description = ""
authors = ["Shunsuke KITADA <shunsuke.kitada.0831@gmail.com>"]
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.9"
datasets = { extras = ["vision"], version = "^2.14.4" }
pycocotools = "^2.0.7"
[tool.poetry.group.dev.dependencies]
ruff = "^0.0.287"
black = "^23.7.0"
mypy = "^1.5.1"
pytest = "^7.4.1"
[tool.ruff]
line-length = 170
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
|