18 lines
376 B
TOML
18 lines
376 B
TOML
[tool.poetry]
|
|
name = "book-list-api"
|
|
version = "0.1.0"
|
|
description = ""
|
|
authors = ["Guamss <guams@duck.com>"]
|
|
readme = "README.md"
|
|
license = "MIT"
|
|
|
|
[tool.poetry.dependencies]
|
|
python = ">=3.13,<4.0"
|
|
Django = "^5.2.7"
|
|
djangorestframework = ">=3.16.1"
|
|
djangorestframework_simplejwt = "^5.5.1"
|
|
django-cors-headers = "^4.9.0"
|
|
psycopg = "^3.1"
|
|
gunicorn = "^22.0"
|
|
dotenv = "^0.9.9"
|