-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpyproject.toml
49 lines (36 loc) · 940 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
[tool.poetry]
name = "drf-kit"
version = "1.8.6"
description = "DRF Toolkit"
authors = ["eduK <[email protected]>"]
packages = [
{ include = "drf_kit" },
]
[tool.poetry.dependencies]
python = ">=3.8,<3.10"
Django = "^3"
djangorestframework = "^3"
django-filter = "^2"
django-ordered-model = "^3"
drf-extensions = "^0"
[tool.poetry.dev-dependencies]
pylint = "*"
pylint-django = "*"
nose = "^1"
coverage = "*"
black = "*"
[tool.black]
line-length = 120
target-version = ['py39']
[tool.pylint.master]
ignore = "migrations"
load-plugins = "pylint_django"
[tool.pylint.messages_control]
disable = "C0330, C0326, C0114, C0115, C0116, W0212, W0511, W0613, W1203, W0221, R0901, R0903, R0913, R0201, R0801, R0401, R0904, R0914, R0911, R0912"
[tool.pylint.format]
max-line-length = "120"
[tool.pylint.basic]
good-names = "i, j, k, m, n, dt, db, pk, tz, qs, ex, _"
[build-system]
requires = ["poetry"]
build-backend = "poetry.masonry.api"