poker-ranking-service/pyproject.toml

30 lines
609 B
TOML

[tool.poetry]
name = "poker"
version = "0.2.2"
description = "Single poker hand ranking service."
authors = ["Paul Harrison"]
readme = "README.md"
[tool.poetry.dependencies]
python = ">=3.11,<3.12"
pydantic = "^1.10.2"
[tool.poetry.group.test.dependencies]
pytest = "^7.2.0"
[tool.poetry.group.lint.dependencies]
black = "^22.10.0"
isort = "^5.10.1"
flake8 = "^5.0.4"
flake8-builtins = "^2.0.1"
flake8-blind-except = "^0.2.1"
flake8-eradicate = "^1.4.0"
flake8-use-fstring = "^1.4"
mypy = "^0.991"
pydocstyle = "^6.1.1"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"