aboutsummaryrefslogtreecommitdiff
path: root/pyproject.toml
blob: a81a73b1353df1b8f82cc9c4fc02a4a0e39dee3b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
[tool.poetry]
name = "poker"
version = "2.0.0"
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"

[tool.poetry.group.test.dependencies]
coverage = "^6.5.0"
pytest = "^7.2.0"
httpx = "^0.23.1"

[tool.poetry.group.lint.dependencies]
black = "^23.3.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"
isort = "^5.10.1"
mypy = "^0.991"
pydocstyle = "^6.1.1"

[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"