-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
52 lines (44 loc) · 978 Bytes
/
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
[tool.poetry]
name = "reminder"
version = "0.1.0"
description = ""
authors = ["changiinlee <changjin9792@gmail.com>"]
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.11"
fastapi = "^0.109.2"
uvicorn = {extras = ["standard"], version = "^0.27.0.post1"}
sqlalchemy = "^2.0.25"
python-dotenv = "^1.0.1"
aiomysql = "^0.2.0"
python-multipart = "^0.0.7"
openai = "^1.11.1"
boto3 = "^1.34.36"
pymysql = "^1.1.0"
requests = "^2.31.0"
python-jose = "^3.3.0"
pytz = "^2024.1"
[tool.poetry.group.dev.dependencies]
ruff = "^0.2.1"
black = "^24.1.1"
isort = "^5.13.2"
[tool.ruff]
line-length = 120
select = [
"E", # pycodestyle
"F", # pyflakes
"UP", # pyupgrade
]
target-version = "py311"
[tool.black]
line-length = 120
target-version = ["py311"]
[tool.isort]
profile = "black"
[tool.mypy]
disallow_untyped_defs = true
disallow_incomplete_defs = true
python_version = "3.11"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"