-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
60 lines (55 loc) · 1.23 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
[tool.poetry]
authors = ["Marcus Gabriel <marcusgabriel.ds@gmail.com>"]
description = "Site do PUGPE: Python User Group - Pernambuco"
name = "pugpe-site"
version = "0.1.0"
[tool.poetry.dependencies]
Django = "^3.1.5"
dj-database-url = "^0.5.0"
gunicorn = "^20.0.4"
psycopg2 = "^2.8.6"
python = "^3.9"
python-decouple = "^3.4"
whitenoise = "^5.2.0"
[tool.poetry.dev-dependencies]
bandit = "^1.7.0"
black = "^20.8b1"
django-test-without-migrations = "^0.6"
pre-commit = "^2.9.3"
prospector = "^1.3.1"
ipdb = "^0.13.4"
model-bakery = "^1.2.1"
django-debug-toolbar = "^3.2"
[tool.isort]
atomic = true
combine_star = true
ensure_newline_before_comments = true
force_grid_wrap = 0
include_trailing_comma = true
known_django = "django"
line_length = 100
lines_after_imports = 2
multi_line_output = 3
sections = ["FUTURE", "STDLIB", "DJANGO", "THIRDPARTY", "FIRSTPARTY", "LOCALFOLDER"]
skip = ["venv", "env", "migrations", ".env", ".venv"]
use_parentheses = true
[tool.black]
exclude = '''
/(
\.eggs
| \.git
| \.hg
| \.mypy_cache
| \.venv
| _build
| build
| dist
| [a-z_]+/migrations
)/
'''
line-length = 100
quiet = true
target-version = ['py36']
[build-system]
build-backend = "poetry.core.masonry.api"
requires = ["poetry-core>=1.0.0"]