-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpyproject.toml
58 lines (52 loc) · 1.14 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
# Development tools
[build-system]
requires = [
"setuptools>=42",
"wheel",
"matplotlib"
]
build-backend = "setuptools.build_meta"
# Black profile
[tool.black]
line-length = 122
exclude = '''
/(
| \.git
| \.github
| _build
| build
| dist
)/
'''
#[tool.flakehell]
#exclude = []
## make output nice
#format = "grouped"
#max-line-length = 122
## show line of source code in output
## show_source = true
#extended_default_ignore=[] # workaround for flakehell#10
#
#[tool.flakehell.plugins]
#pycodestyle = ["+*",
## "-E203",
## "-E501",
## "-W503",
## "-E741",
## "-E266", # too many leading #
## "-E731", # do not assign lambda expression, use def
# ]
#pyflakes = ["+*", "-E203"]
## flake8-bandit = ["+*"]
## mccabe = ["+*"]
#pylint = ["+*", "-C0103"]
[tool.isort]
profile = "black"
sections = ["FUTURE", "STDLIB", "FIRSTPARTY", "LOCALFOLDER"]
known_first_party = ["sarkas", ]
default_section = "STDLIB"
force_alphabetical_sort_within_sections = true
[tool.towncrier]
package = "sarkas"
filename = "CHANGELOG.rst"
directory = "changelog/"