forked from UpCloudLtd/upcloud-ansible
-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.cfg
56 lines (53 loc) · 1.02 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
[metadata]
name = upcloud_ansible
description = UpCloud Ansible Provider
long_description = file: README.md
long_description_content_type = text/markdown
original_author = Elias Nygren
maintainer = UpCloud
maintainer_email = hello@upcloud.com
url = https://github.com/UpCloudLtd/upcloud-ansible
packages=['upcloud_ansible']
license = MIT
[options]
python_requires = >=3.6, <4
setup_requires =
setuptools
install_requires =
ansible
upcloud_api
[bdist_wheel]
universal = 1
[flake8]
max-line-length = 99
extend-ignore =
# ignore line length problems; those are fixed by black
E501
# via black
E203
W503
# docstring format leniency
D100
D104
D105
D200
D202
D205
D400
D401
D403
# things from `hacking` we don't care about
H101
H301
H306
H404
H405
per-file-ignores =
test/*: D101,D102,D103,F841,S101,S106,B011
# ignore "imported but not used" in any __init__.pys
*/__init__.py: F401
exclude =
.git
ENV
__pycache__
build