-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
53 lines (49 loc) · 965 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
43
44
45
46
47
48
49
50
51
52
53
[tool.poetry]
name = "openprecincts-web"
version = "3.4"
description = ""
authors = ["James Turk <[email protected]>"]
[tool.poetry.dependencies]
python = "^3.7"
django = "^2.2"
us = "^1.0"
boto3 = "^1.9"
django-sesame = "^1.7"
django-webpack-loader = "^0.6.0"
whitenoise = "^4.1"
brotli = "^1.0"
python-magic = "^0.4.15"
psycopg2-binary = "^2.8"
django-markupfield = "^1.5"
markdown = "^3.1"
mapbox = "^0.18.0"
urllib3 = "^1.25"
django-silk = "^3.0"
pandas = "^0.25.0"
chardet = "^3.0"
celery = "^4.3"
django-celery-results = "^1.1"
moto = "^1.3.15dev0"
dj-database-url = "^0.5.0"
[tool.poetry.dev-dependencies]
flake8 = "^3.7"
pytest = "^5.0"
pytest-django = "^3.5"
ipdb = "^0.12.2"
[tool.black]
line-length = 88
target_version = ['py37']
exclude = '''
(
/(
\.eggs # exclude a few common directories in the
| \.git # root of the project
| \.tox
| \.venv
| _build
| build
| dist
| node_modules
)
)
'''