-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
68 lines (59 loc) · 1.17 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
[tool.poetry]
name = "waffledotcom-server"
version = "0.1.0"
description = ""
authors = ["shinhong-park <[email protected]>"]
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.11"
fastapi = "^0.103.1"
sqlalchemy = "^2.0.21"
loguru = "^0.7.2"
python-dotenv = "^1.0.0"
uvicorn = "^0.22.0"
bcrypt = "^4.0.1"
alembic = "^1.12.0"
mysqlclient = "^2.2.0"
pygithub = "^1.59.1"
slack-sdk = "^3.22.0"
aws-secretsmanager-caching = "^1.1.1.5"
boto3 = "^1.28.56"
pydantic-settings = "^2.0.3"
httpx = "^0.25.0"
pydantic = "^2.4.2"
aiohttp = "^3.9.5"
schedule = "^1.2.2"
pytz = "^2024.1"
[tool.poetry.group.dev.dependencies]
pytest = "^7.4.2"
pre-commit = "^3.4.0"
black = "^23.9.1"
pylint = "^2.17.6"
devtools = "^0.12.2"
pyright = "^1.1.329"
ruff = "^0.0.291"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.pytest.ini_options]
pythonpath = [
"."
]
[tool.pyright]
exclude = [
"**/node_modules",
"**/__pycache__",
"**/migrations/versions",
]
venvPath = "."
venv = ".venv"
reportShadowedImports = false
[tool.isort]
profile = "black"
[tool.pycln]
all = true
[tool.black]
line-length = 88
preview = true
[tool.ruff]
line-length = 88