-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.cfg
60 lines (55 loc) · 1.49 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
#
# K2HR3 OpenStack Notification Listener
#
# Copyright 2018 Yahoo! Japan Corporation.
#
# K2HR3 is K2hdkc based Resource and Roles and policy Rules, gathers
# common management information for the cloud.
# K2HR3 can dynamically manage information as "who", "what", "operate".
# These are stored as roles, resources, policies in K2hdkc, and the
# client system can dynamically read and modify these information.
#
# For the full copyright and license information, please view
# the licenses file that was distributed with this source code.
#
# AUTHOR: Hirotaka Wakabayashi
# CREATE: Tue Sep 11 2018
# REVISION:
#
[metadata]
# This includes the license file in the wheel.
license_file = LICENSE
[flake8]
# pycodestyle
max-line-length = 119
# mccabe
max_complexity = 10
# pycodelint
# it's not a bug that we aren't using all of hacking
ignore =
# D401: First line should be in imperative mood
D401,
# E402 module level import not at top of file
E402
exclude =
# No need to traverse our git directory
.git,
# There's no value in checking cache directories
__pycache__,
# The conf file is mostly autogenerated, ignore it
docs/source/conf.py,
# The old directory contains Flake8 2.0
old,
# This contains our built documentation
build,
# This contains builds of flake8 that we don't want to check
dist
[mypy-oslo_config]
ignore_missing_imports = True
[mypy-oslo_messaging]
ignore_missing_imports = True
#
# VIM modelines
#
# vim:set ts=4 fenc=utf-8:
#