forked from bomzheg/KarmaBot
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
43 lines (38 loc) · 763 Bytes
/
pyproject.toml
File metadata and controls
43 lines (38 loc) · 763 Bytes
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
[project]
name = "karmabot"
version = "1.6.1"
requires-python = ">=3.11"
dependencies = [
"aiogram~=3.3.0",
"aiohttp~=3.9.1",
"tortoise-orm~=0.19.3",
"asyncpg~=0.29.0",
"lxml~=4.9.2",
"beautifulsoup4~=4.11.2",
"python-dotenv~=0.21.1",
"Pyrogram~=2.0.97",
"pyyaml~=6.0.1",
"colorlog~=6.7.0",
"redis~=4.4.2",
"pre-commit~=3.5.0",
]
[project.optional-dependencies]
test = [
"pytest~=7.4.4",
]
lint = [
"ruff~=0.1.9",
"black~=23.12.1",
"isort~=5.13.2",
]
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
packages = ["app"]
[tool.ruff]
target-version = "py311"
line-length = 100
pydocstyle = { convention = "google" }
[tool.isort]
profile = "black"