-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
58 lines (51 loc) · 1003 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
54
55
56
57
58
[tool.poetry]
name = "dhp"
description = "Dane Hillard Photography"
version = "1.0.0"
authors = ["daneah <[email protected]"]
[tool.poetry.dependencies]
python = "^3.6.5"
boto3 = "*"
coverage = {version="*", extras=["toml"]}
django = "2.1.15"
django-codemirror-widget = "*"
gunicorn = "*"
Pillow = "*"
requests = "*"
rollbar = "*"
sorl-thumbnail = "*"
zappa = "0.48.2"
django-storages = "*"
django-webpack-loader = "*"
mysqlclient = "1.3.12"
[tool.poetry.dev-dependencies]
django-debug-toolbar = "*"
pytest = "*"
pytest-django = "*"
pytest-cov = "*"
black = "^19.10b0"
flake8 = "^3.7.9"
[tool.black]
line_length = 120
target-version = ["py36", "py37", "py38"]
[tool.coverage.run]
source = [
".",
]
omit = [
"*/__init__.py",
"*/migrations/*",
"*/tests/*",
"*/test_*",
"manage.py",
"configuration/*",
"*/admin.py",
"*/apps.py",
"*/urls.py",
"sitemaps.py",
]
branch = true
[tool.coverage.report]
precision = 2
show_missing = true
skip_covered = true