-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsetup.cfg
65 lines (57 loc) · 1.16 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
[metadata]
name = api
summary = A REST API for Request-Yo-Racks.
description-file =
README.rst
author = Rémy Greinhofer
author-email = remy.greinhofer@gmail.com
home-page = http://www.github.com/
classifier =
Intended Audience :: Information Technology
Intended Audience :: System Administrators
License :: OSI Approved :: Apache Software License
Operating System :: POSIX :: Linux
Programming Language :: Python
Programming Language :: Python :: 3
Programming Language :: Python :: 3.6
[files]
data_files =
etc/ryr-api = openapi/openapi.yaml
[entry_points]
console_scripts =
api = api.main:main
[build_sphinx]
source-dir = docs/source
build-dir = docs/build
all_files = 1
warning-is-error = 1
[pbr]
builder = html
skip_authors = True
skip_changelog = True
warnerrors = True
[wheel]
universal = 0
[flake8]
exclude =
*.egg-info,
*.pyc,
.cache,
.eggs
.git,
.tox,
__pycache__,
build,
dist,
docs/source/conf.py,
*/settings/*
*/tests/*,
venv
import-order-style = google
max-complexity = 10
max-line-length = 120
[pydocstyle]
match = (?!test_|__).*\.py
match-dir =([^\.].*|venv)
[tool:pytest]
addopts = --disable-socket