-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
46 lines (40 loc) · 890 Bytes
/
pyproject.toml
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
34
35
36
37
38
39
40
41
42
43
44
45
46
[tool.poetry]
name = "xobot"
version = "0.1.0"
description = ""
authors = ["idilettant <[email protected]>"]
license = "MIT"
packages = [
{ include = "tictactoe" },
]
[tool.poetry.dependencies]
python = "^3.8"
fastapi = "^0.63.0"
uvicorn = "^0.13.4"
requests = "^2.25.1"
dataclass-factory = "^2.11"
docker-compose = "^1.29.2"
docker = "^5.0.2"
heroku = "^0.1.4"
[tool.poetry.dev-dependencies]
pre-commit = "^2.11.1"
wemake-python-styleguide = "^0.15.2"
pytest = "^6.2.2"
pytest-cov = "^2.11.1"
flake8-cognitive-complexity = "^0.1.0"
pyngrok = "^5.0.5"
mypy = "^0.812"
python-dotenv = "^0.17.1"
pook = "^1.0.1"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.scripts]
tictactoe = "tictactoe.scripts.xobot:main"
[tool.pytest.ini_options]
minversion = "6.0"
addopts = "-ra -q"
testpaths = [
"tests",
"integration",
]