-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
77 lines (70 loc) · 1.2 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
[tool.poetry]
name = "wedne"
version = "1.2.0"
description = "Координируем строительство башни"
authors = ["Oskar Sharipov"]
readme = ["README.md", "README-EN.md"]
license = "BSD-3-Clause"
repository = "https://github.com/igoose1/wedne"
[tool.poetry.dependencies]
python = "^3.10"
pydantic = {extras = ["dotenv"], version = "^2.1.0"}
fire = "^0.5.0"
httpx = "^0.24.1"
telethon = "^1.28.5"
aiorun = "^2023.7.2"
pytz = "^2023.3"
pydantic-settings = "^2.0.2"
[tool.poetry.group.server.dependencies]
fastapi = "^0.109.1"
peewee = "^3.16.2"
uvicorn = "^0.22.0"
huey = "^2.4.5"
redis = "^5.0.1"
gunicorn = "^22.0.0"
[tool.poetry.group.dev.dependencies]
isort = "^5.12.0"
black = "^24.3.0"
pyright = "^1.1.316"
pre-commit = "^3.3.3"
autoflake = "^2.2.0"
ruff = "^0.0.280"
ptpython = "^3.0.23"
pytest = "^7.4.0"
[tool.ruff]
select = [
"E",
"F",
"C90",
"I",
"N",
"YTT",
"ASYNC",
"S",
"COM",
"CPY",
"C4",
"EM",
"ISC",
"ICN",
"G",
"INP",
"PIE",
"RET",
"SIM",
"TID",
"PTH",
"TD",
"PL",
"RUF",
"UP",
"DTZ",
]
ignore = [
"TD003",
]
[tool.ruff.per-file-ignores]
"*_test.py" = ["S101", "PLR2004"]
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"