poker-ranking-service/pyproject.toml

34 lines
703 B
TOML
Raw Permalink Normal View History

2022-12-15 15:59:38 +00:00
[tool.poetry]
name = "poker"
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"
fastapi = "^0.87.0"
loguru = "^0.6.0"
pydantic = "^1.10.2"
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"
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]
2023-05-16 17:33:40 +00:00
black = "^23.3.0"
2022-11-18 13:18:07 +00:00
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"