-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
53 lines (45 loc) · 1.01 KB
/
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
47
48
49
50
51
52
53
[tool.poetry]
name = "p2p_exchanger"
version = "0.2.0"
description = "Backend service and bot for p2p crypto exchange"
authors = ["Gamazic <Nikita.nov.ru@gmail.com>"]
[tool.poetry.dependencies]
python = "^3.10"
fastapi = "^0.85.1"
pydantic = "^1.10.2"
fastapi-utils = "^0.2.1"
httpx = "^0.23.0"
humps = "^0.2.2"
uvicorn = "^0.19.0"
aiogram = "^2.22.2"
aiogram-dialog = "^1.9.0"
typer = "^0.6.1"
cachetools = "<=5.0.0"
pip = "^22.3"
install = "^1.3.5"
asyncache = "^0.1.1"
starlite = "^1.44.0"
emoji = "^2.2.0"
[tool.poetry.dev-dependencies]
pytest = "^7.1.3"
pytest-asyncio = "^0.20.1"
isort = "^5.10.1"
flake8 = "^5.0.4"
mypy = "^0.982"
black = "^22.10.0"
pytest-cov = "^4.0.0"
types-cachetools = "^5.2.1"
[tool.poetry.group.dev.dependencies]
pytest-cov = "^4.0.0"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.pytest.ini_options]
asyncio_mode = "auto"
[tool.black]
line-length = 120
include = '\.pyi?$'
[tool.coverage.run]
omit = ["*/tests/*"]
[tool.mypy]
exclude = [".venv"]