-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
57 lines (52 loc) · 1 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
[tool.poetry]
name = "inventory"
version = "0.1.0"
description = "Inventory"
authors = ["Patrick <patrick.pwall@gmail.com>"]
[tool.poetry.dependencies]
python = "^3.8"
django = "^3.0.5"
dynaconf = {version = "^2.2.3", extras = ["yaml"]}
gunicorn = "^20.0.4"
[tool.poetry.dev-dependencies]
pytest = "^5.2"
fake = "^0.8"
mixer = "^6.1.3"
pytest-cov = "^2.8.1"
pytest-django = "^3.9.0"
pre-commit = "^2.3.0"
black = "^19.10b0"
mypy = "^0.770"
flake8 = "^3.7.9"
isort = "^4.3.21"
[tool.isort]
multi_line_output = 3
include_trailing_comma = true
force_grid_wrap = 0
use_parentheses = true
line_length = 88
[tool.black]
line-length = 88
target-version = ['py36', 'py37', 'py38']
include = '\.pyi?$'
exclude = '''
/(
\.eggs
| \.git
| \.hg
| \.mypy_cache
| \.tox
| \.venv
| _build
| buck-out
| build
| dist
# The following are specific to Black, you probably don't want those.
| blib2to3
| tests/data
| profiling
)/
'''
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"