-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
34 lines (30 loc) · 907 Bytes
/
pyproject.toml
File metadata and controls
34 lines (30 loc) · 907 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
[project]
name = "codte-backend"
version = "0.1.0"
description = "Django backend project"
authors = [
{name = "leesanghun"}
]
readme = "README.md"
requires-python = "^3.13"
dependencies = [
"django (>=5.2.8,<6.0.0)",
"psycopg2-binary (>=2.9.11,<3.0.0)",
"python-decouple (>=3.8,<4.0)",
"djangorestframework (>=3.16.1,<4.0.0)",
"djangorestframework-simplejwt (>=5.5.1,<6.0.0)",
"djangorestframework-camel-case (>=1.4.2,<2.0.0)",
"requests (>=2.32.5,<3.0.0)",
"django-cors-headers (>=4.9.0,<5.0.0)",
"drf-spectacular (>=0.29.0,<0.30.0)",
"google-generativeai (>=0.8.0,<0.9.0)",
"google-genai (>=1.60.0,<2.0.0)",
"gunicorn (>=24.0.0,<25.0.0)",
"whitenoise (>=6.11.0,<7.0.0)",
"dj-database-url (>=3.1.0,<4.0.0)"
]
[tool.poetry]
package-mode = false
[build-system]
requires = ["poetry-core>=2.0.0,<3.0.0"]
build-backend = "poetry.core.masonry.api"