This commit is contained in:
2024-11-14 02:06:21 +08:00
commit 29ce03dbc5
24 changed files with 1042 additions and 0 deletions

18
pyproject.toml Normal file
View File

@ -0,0 +1,18 @@
[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"}
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"