-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.cfg
70 lines (63 loc) · 2.43 KB
/
setup.cfg
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
59
60
61
62
63
64
65
66
67
68
69
70
[metadata]
name = inmanta-module-files
version = 2.1.2
description = Simple module containing various types of resource to manage files.
long_description = file: README.md
long_description_content_type = text/markdown
author = Guillaume Everarts de Velp
author_email = [email protected]
license = ASL 2.0
copyright = 2023 Guillaume Everarts de Velp
project_urls =
Source = https://github.com/edvgui/inmanta-module-files
Changelog = https://github.com/edvgui/inmanta-module-files/blob/master/CHANGELOG.md
[options]
zip_safe=False
include_package_data=True
packages=find_namespace:
install_requires =
inmanta-module-std<9
inmanta-module-mitogen<1
inmanta-core>=11.3.0
[options.packages.find]
include = inmanta_plugins*
inmanta_files
[flake8]
# H101 Include your name with TODOs as in # TODO(yourname). This makes it easier to find out who the author of the comment was.
# H302 Do not import objects, only modules DEPRECATED
# H404 Multi line docstrings should start without a leading new line.
# H405 multi line docstring summary not separated with an empty line
# H301 Do not import more than one module per line (*)
# H306 Alphabetically order your imports by the full module path.
# H904 Wrap long lines in parentheses instead of a backslash
# E203 whitespace before ':' " on list slice.
# E266 too many leading ‘#’ for block comment
# E252 missing whitespace around parameter equals
# w503 line break occurred before a binary operator (black and flake disagree)
# E402 module level import not at top of file
# E203 whitespaces and the slice operator. (black and flake disagree)
# F722 syntax error in forward annotation (plugins type annotations)
ignore = H405,H404,H302,H306,H301,H101,H801,E402,W503,E252,E203,F722
# These inmanta primitive types will throw F821 in annotations
# see: http://flake8.pycqa.org/en/latest/user/options.html#cmdoption-flake8-builtins
builtins=string,number,bool
max-line-length = 128
exclude = **/.env,.venv,.git,.tox,dist,doc,**egg
copyright-check=True
copyright-author=Guillaume Everarts de Velp
select = E,F,W,C,BLK,I
[isort]
multi_line_output=3
include_trailing_comma=True
force_grid_wrap=0
use_parentheses=True
# Black splits up import statements that are too long
# Setting isorts line_length to 88 (blacks default) so they do not collide
line_length=88
known_first_party=inmanta
known_third_party=pytest,pydantic,Jinja2
[black]
line-length=128
target-version = 'py36', 'py37', 'py38'
[egg_info]
tag_build = dev0