poker-ranking-service/pyproject.toml

31 lines
629 B
TOML
Raw Normal View History

2022-12-15 15:59:38 +00:00
[tool.poetry]
name = "poker"
2022-11-18 13:27:10 +00:00
version = "0.2.4"
2022-12-15 15:59:38 +00:00
description = "Single poker hand ranking service."
authors = ["Paul Harrison"]
readme = "README.md"
[tool.poetry.dependencies]
python = ">=3.11,<3.12"
pydantic = "^1.10.2"
2022-12-15 15:59:38 +00:00
[tool.poetry.group.test.dependencies]
2022-11-18 13:27:10 +00:00
coverage = "^6.5.0"
2022-12-15 15:59:38 +00:00
pytest = "^7.2.0"
2022-11-18 13:18:07 +00:00
[tool.poetry.group.lint.dependencies]
black = "^22.10.0"
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"
2022-11-18 13:27:10 +00:00
isort = "^5.10.1"
2022-11-18 13:18:07 +00:00
mypy = "^0.991"
pydocstyle = "^6.1.1"
2022-12-15 15:59:38 +00:00
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"