-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
56 lines (48 loc) · 1.33 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 = "mte-django"
version = "0.1.0"
description = "mathese emoi website in django"
authors = ["Thomas <guntho.neo@gmail.com>"]
license = "MIT License"
readme = "README.md"
#packages = [{include = "mte_django"}]
[tool.poetry.dependencies]
python = "^3.10"
django = "^4.1.3"
django-stubs = "^1.15.0"
mypy = "^1.0.1"
wemake-python-styleguide = "^0.17.0"
flakeheaven = "^3.2.1"
autoflake = "1.7.8"
autopep8 = "1.6.0"
docformatter = "1.5.1"
unify = "0.5"
[tool.poetry.group.dev.dependencies]
black = "^23.1.0"
isort = "^5.12.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.flakeheaven]
format = "grouped"
baseline = ".flakeheaven_baseline"
show_source = true
statistics = false
doctests = true
enable_extensions = "G"
accept_encodings = "utf-8"
max_complexity = 6
# See https://wemake-python-styleguide.readthedocs.io/en/0.17.0/pages/usage/violations/
[tool.flakeheaven.plugins]
"flake8-*" = ["+*", "-D100", "-D101", "-D103", "-D401"]
"flake8-isort" = ["+*", "-I001", "-I004"]
mccabe = ["+*"]
"pep8-naming" = ["+*"]
pycodestyle = ["+*"]
pyflakes = ["+*"]
"wemake-python-styleguide" = ["+*", "-WPS411", "-WPS407"]
#ignore = ["D104","D106","D401","W504","X100","RST303","RST304","DAR103","DAR203","WPS411","WPS407","I004"]
[tool.black]
skip_string_normalization = true
line_length = 100
quiet = true