forked from alexmojaki/futurecoder
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
42 lines (38 loc) · 1002 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
38
39
40
41
42
[tool.poetry]
name = "book"
version = "0.1.0"
description = ""
authors = ["Alex Hall <[email protected]>"]
[tool.poetry.dependencies]
python = "^3.8"
Django = "^2.2.7"
django-sass-processor = "^0.7.4"
libsass = "^0.19.4"
django-compressor = "^2.3"
markdown = "^3.1.1"
astcheck = "^0.2.5"
asttokens = "^2.0.3"
littleutils = "^0.2.1"
snoop = "^0.2.4"
birdseye = "^0.8.3"
django-allauth = "^0.41.0"
django-user-agents = "^0.4.0"
gevent = {version = "^1.4", optional = true}
gunicorn = {version = "^19.9", optional = true}
psycopg2 = {version = "^2.8.4", optional = true}
whitenoise = "^5.0.1"
dj-database-url = "^0.5.0"
django-crispy-forms = "^1.9.0"
sentry-sdk = "^0.14.3"
requests = "^2.23.0"
psutil = "^5.7.0"
dryenv = "^0.0.1"
stack_data = "^0.0.7"
[tool.poetry.extras]
production = ["gevent", "gunicorn", "psycopg2"]
[tool.poetry.dev-dependencies]
flake8 = {version = "^3.8.3", optional = true}
isort = "^5.1.4"
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"