-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
37 lines (34 loc) · 891 Bytes
/
pyproject.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
[tool.poetry]
name = "epiquote"
version = "0.0.0"
description = "A quote database website"
authors = ["Antoine Pietri <[email protected]>"]
license = "GPL-3.0-or-later"
readme = "README.md"
repository = "https://github.com/seirl/epiquote"
packages = [
{ include = "epiquote" },
{ include = "quotes" },
]
[tool.poetry.dependencies]
python = ">=3.8,<4.0"
django = "^4.2.11"
django-bootstrap-form = "^3.4"
django-contrib-comments = "^2.2.0"
psycopg2-binary = "^2.9.6"
django-registration = "^3.3"
dj-database-url = "^2.0.0"
# Waiting for Django 4 compat:
# https://gitlab.cri.epita.fr/cri/packages/social-auth-backend-epita/-/merge_requests/5
# social-auth-backend-epita = "^1.0.2"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.black]
line-length = 79
skip-string-normalization = true
extend-exclude = '''
/(
| migrations
)/
'''