2019-08-31 22:25:25 +00:00
|
|
|
[tool.poetry]
|
|
|
|
name = "membersystem"
|
|
|
|
version = "0.1.0"
|
|
|
|
description = ""
|
|
|
|
authors = ["Your Name <you@example.com>"]
|
|
|
|
|
|
|
|
[tool.poetry.dependencies]
|
2022-08-09 14:33:56 +00:00
|
|
|
python = "^3.10"
|
2021-12-13 19:44:09 +00:00
|
|
|
Django = "^4.0"
|
2021-01-26 19:37:50 +00:00
|
|
|
django-money = "^1.3"
|
2021-12-13 19:44:09 +00:00
|
|
|
django-allauth = "^0.46"
|
|
|
|
psycopg2 = "^2.9"
|
|
|
|
environs = {extras = ["django"], version = "^9.3"}
|
|
|
|
uvicorn = "^0.13"
|
|
|
|
whitenoise = "^5.2"
|
2019-08-31 22:25:25 +00:00
|
|
|
|
|
|
|
[tool.poetry.dev-dependencies]
|
|
|
|
pytest = "^5.1"
|
|
|
|
pytest-django = "^3.5"
|
2021-02-27 20:07:48 +00:00
|
|
|
django-debug-toolbar = "^3.2"
|
2019-08-31 22:25:25 +00:00
|
|
|
|
|
|
|
[build-system]
|
|
|
|
requires = ["poetry>=0.12"]
|
|
|
|
build-backend = "poetry.masonry.api"
|