-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
38 lines (31 loc) · 820 Bytes
/
pyproject.toml
File metadata and controls
38 lines (31 loc) · 820 Bytes
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
[tool.poetry]
name = "django-parallel-test"
version = "0.1.0"
description = "Django test runner to run a test suite across different machines."
authors = ["Sid Mitra <django-parallel-test@sidmitra.com>"]
license = "MIT"
[tool.poetry.dependencies]
python = ">=3.6.1"
Django = ">=2.2"
[tool.poetry.dev-dependencies]
pre-commit = "^2.11.1"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.isort]
combine_as_imports = true
force_grid_wrap = 0
include_trailing_comma = true
known_third_party = ["django"]
line_length = 88
multi_line_output = 3
[tool.pylint.master]
[tool.pylint.format]
max-line-length = 88
max-module-lines = 1000
single-line-class-stmt = "no"
single-line-if-stmt = "no"
[tool.pylint.messages_control]
disable = [
"logging-fstring-interpolation",
]