forked from data.coop/membersystem
22 lines
416 B
TOML
22 lines
416 B
TOML
[tool.poetry]
|
|
name = "membersystem"
|
|
version = "0.1.0"
|
|
description = ""
|
|
authors = ["Your Name <you@example.com>"]
|
|
|
|
[tool.poetry.dependencies]
|
|
python = "^3.7"
|
|
Django = "^3.1"
|
|
django-money = "^1.3"
|
|
django-allauth = "^0.40.0"
|
|
psycopg2 = "^2.8.6"
|
|
|
|
[tool.poetry.dev-dependencies]
|
|
pre-commit = "^2.9.3"
|
|
pytest = "^5.1"
|
|
pytest-django = "^3.5"
|
|
|
|
[build-system]
|
|
requires = ["poetry>=0.12"]
|
|
build-backend = "poetry.masonry.api"
|