-
-
Notifications
You must be signed in to change notification settings - Fork 30
/
pyproject.toml
71 lines (66 loc) · 1.54 KB
/
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
[tool.poetry]
name = "back-end"
version = "0.1.0"
description = ""
authors = ["Allen Anthes <[email protected]>"]
license = "MIT"
[tool.poetry.dependencies]
python = "^3.7"
bcrypt = "^3.1"
boto3 = "^1.13.0"
cryptography = "^2.9.2"
django = "^2.2"
djangorestframework = "3.9"
djangorestframework-camel-case = "^1.0"
djangorestframework-jwt = "^1.11"
django-allauth = "^0.39.1"
django-anymail = "^6.1"
django-background-tasks = "^1.2"
django-cors-headers = "^3.0"
django-recaptcha2 = "^1.4"
django-rest-auth = "^0.9.5"
django-split-settings = "^0.3.0"
django-storages = "^1.7"
django-suit = "^0.2.26"
django-suit-daterange-filter = "^0.0.6"
django-widget-tweaks = "^1.4"
drf-yasg = "^1.17.1"
gunicorn = "^20.0.4"
packaging = "^19.1"
pillow = "^7.1.2"
psycopg2 = "^2.8"
python-decouple = "^3.1"
mailchimp3 = "^3.0"
mandrill = "^1.0"
python-dotenv = "^0.10.3"
requests = "^2.23.0"
sentry-sdk = "^0.14.3"
six = "^1.12"
honeycomb-beeline = "^2.11.4"
django-allow-cidr = "^0.3.1"
django-health-check = "^3.12.1"
[tool.poetry.dev-dependencies]
bandit = "^1.6"
black = {version = "^19.3b0"}
coverage = "^4.5"
django-debug-toolbar = "^2.0"
factory_boy = "^2.12"
flake8 = "^3.7"
flake8-bugbear = "^19.3"
isort = "^4.3"
pyhumps = "^1.2"
pytest = "^5.4.1"
pytest-django = "^3.5"
pytest-env = "^0.6.2"
pytest-mock = "^3.1.0"
pytest-pythonpath = "^0.7.3"
responses = "^0.10.14"
[tool.isort]
line_length = 88
multi_line_output = 3
include_trailing_comma = true
force_grid_wrap = 0
use_parentheses = true
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"