-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpyproject.toml
More file actions
46 lines (41 loc) · 1014 Bytes
/
pyproject.toml
File metadata and controls
46 lines (41 loc) · 1014 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
44
45
46
[tool.poetry]
name = "upcy-be"
version = "0.1.0"
description = ""
authors = ["Scanf-s <calzone0404@gmail.com>"]
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.12"
Django = "^5.1.1"
djangorestframework = "^3.15.2"
djangorestframework-simplejwt = "^5.2.2"
django-extensions = "^3.2.3"
pillow = "^10.4.0"
gunicorn = "^23.0.0"
uvicorn = "^0.30.6"
boto3 = "^1.35.19"
django-cors-headers = "^4.4.0"
python-dotenv = "^1.0.1"
django-storages = {extras = ["s3"], version = "^1.14.4"}
psycopg2-binary = "^2.9.9"
faker = "^33.3.1"
[tool.poetry.group.dev.dependencies]
flake8 = "^7.1.1"
black = "^24.8.0"
mypy = "^1.11.2"
isort = "^5.13.2"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.black]
line-length = 88
extend-exclude = '''
# 마이그레이션 파일 제외
.*/migrations/.*
'''
[tool.isort]
profile = "black"
line_length = 88
known_third_party = ["example_package"]
skip_gitignore = true
skip_glob = ["*/migrations/*"] # 모든 migrations 폴더 제외