2022-12-15 15:59:38 +00:00
|
|
|
[tool.poetry]
|
|
|
|
name = "poker"
|
2022-11-20 15:13:16 +00:00
|
|
|
version = "2.0.0"
|
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"
|
2022-11-20 15:13:16 +00:00
|
|
|
fastapi = "^0.87.0"
|
|
|
|
loguru = "^0.6.0"
|
2022-11-18 13:10:08 +00:00
|
|
|
pydantic = "^1.10.2"
|
2022-11-20 15:13:16 +00:00
|
|
|
uvicorn = "^0.20.0"
|
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-20 15:13:16 +00:00
|
|
|
httpx = "^0.23.1"
|
2022-12-15 15:59:38 +00:00
|
|
|
|
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"
|