-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpyproject.toml
51 lines (46 loc) · 1.12 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
[tool.poetry]
name = "perdiem-django"
version = "0.1.0"
description = "Crowdfunding platform for emerging musicians."
authors = ["Lucas Connors <[email protected]>", "localastronaut"]
license = "ISC"
[tool.poetry.dependencies]
python = "^3.8"
Django = "~2.2.10"
gunicorn = "^20.0.4"
psycopg2 = "=2.8.6"
Pillow = "^8.0.1"
social-auth-app-django = "^4.0.0"
python-memcached = "^1.59"
requests = "^2.24.0"
boto3 = "^1.16.9"
django-pigeon = "^0.3.0"
sorl-thumbnail = "^12.6.3"
whitenoise = "^5.2.0"
django-s3-storage = "^0.13.4"
djangorestframework = "^3.12.1"
django-ses = "^1.0.3"
geopy = "^2.0.0"
pinax-stripe = "^4.4.0"
django-templated-email = "^2.3.0"
django-markdown-deux = "^1.0.5"
django-pagedown = "^2.1.2"
django-gfklookupwidget = "^1.0.9"
python-dotenv = "^0.15.0"
sentry-sdk = "^0.19.1"
fabric = "^2.5"
django-configurations = "^2.2"
[tool.poetry.dev-dependencies]
factory-boy = "^3.1.0"
coverage = "^5.3"
black = "^20.8b1"
pyupgrade = "^2.7"
isort = "^5.6.4"
[tool.isort]
profile = "black"
[tool.black]
line-length = 88
target_version = ["py38"]
[build-system]
requires = ["poetry>=1.0"]
build-backend = "poetry.masonry.api"