-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
59 lines (49 loc) · 1.3 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
[tool.poetry]
name = "hannibot"
version = "1.4.0"
description = ""
authors = ["Kenneth V. Domingo <[email protected]>"]
license = "LICENSE"
[tool.poetry.dependencies]
python = "^3.12"
aiohttp = "^3.10.10"
"discord.py" = "^2.4.0"
requests = "^2.32.3"
tqdm = "^4.67.0"
python-dotenv = "^1.0.1"
loguru = "^0.7.2"
watchdog = { extras = ["watchmedo"], version = "^6.0.0" }
click = "^8.1.7"
psycopg2-binary = "^2.9.10"
lxml = "^5.3.0"
beautifulsoup4 = "^4.12.3"
pydantic = "^2.9.2"
pydantic-settings = "^2.6.1"
pytz = "^2024.2"
asyncpraw = "^7.8.0"
sqlalchemy = "^2.0.36"
asyncpg = "^0.30.0"
python-ulid = { extras = ["pydantic"], version = "^3.0.0" }
alembic = "^1.13.3"
[tool.poetry.group.dev.dependencies]
ruff = "^0.7.1"
ipython = "^8.29.0"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.ruff]
target-version = "py312"
[tool.ruff.lint]
select = ["E", "W", "F", "I", "C", "B", "UP"]
ignore = ["E203", "E266", "E501", "E402", "W605"]
[tool.ruff.mccabe]
max-complexity = 10
[tool.ruff.lint.flake8-bugbear]
extend-immutable-calls = ["fastapi.Depends", "fastapi.Query"]
[tool.ruff.lint.flake8-builtins]
builtins-ignorelist = ["id"]
[tool.ruff.lint.isort]
combine-as-imports = true
force-wrap-aliases = true
[tool.ruff.lint.pep8-naming]
classmethod-decorators = ["pydantic.validator"]