20 lines
481 B
TOML
20 lines
481 B
TOML
[tool.poetry]
|
|
name = "url-shortener"
|
|
version = "0.1.0"
|
|
description = ""
|
|
authors = ["Pin Lin <pinlin945@gmail.com>"]
|
|
readme = "README.md"
|
|
|
|
[tool.poetry.dependencies]
|
|
python = "^3.12"
|
|
django = "^5.1.3"
|
|
gunicorn = "^23.0.0"
|
|
python-dotenv = "^1.0.1"
|
|
psycopg2-binary = "^2.9.10"
|
|
whitenoise = {extras = ["brotli"], version = "^6.7.0"}
|
|
django-allauth = {extras = ["socialaccount"], version = "^65.7.0"}
|
|
|
|
[build-system]
|
|
requires = ["poetry-core"]
|
|
build-backend = "poetry.core.masonry.api"
|