kculculate / pyproject.toml
neoai-kterasawa
update toml
e80821f
raw
history blame
643 Bytes
[tool.poetry]
name = "kculculate"
version = "0.1.0"
description = ""
authors = ["neoai-kterasawa <[email protected]>"]
packages = [{ include = "kculculate" }]
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.10"
gradio = "^4.39.0"
pydantic = "^2.8.2"
[tool.poetry.group.dev.dependencies]
isort = "^5.13.2"
black = "^24.4.2"
mypy = "^1.11.0"
pyproject-flake8 = "^7.0.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.flake8]
max-line-length = 119
extend-ignore = ["E203", "W503", "E501", "E704"]
exclude = [".venv", ".git", "__pycache__", ".mypy_cache", ".hg"]
max-complexity = 10