-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathsetup.cfg
54 lines (47 loc) · 1.2 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
[metadata]
name = viewflow-extensions
author = Thermondo GmbH
author-email = [email protected]
summary = Useful extensions for django-viewflow-pro.
description-file = README.rst
home-page = https://github.com/Thermondo/viewflow-extensions
license = Apache-2
classifier =
Development Status :: 4 - Beta
Environment :: Web Environment
Intended Audience :: Developers
License :: OSI Approved :: Apache Software License
Operating System :: OS Independent
Programming Language :: Python :: 3
Framework :: Django
[files]
packages =
viewflow_extensions
[pbr]
skip_authors = true
skip_changelog = true
[build_sphinx]
builders = spelling,html
source-dir = docs
build-dir = docs/_build
warning-is-error = 1
[tool:pytest]
norecursedirs = env .tox .eggs
addopts = --tb=short -rxs --nomigrations
DJANGO_SETTINGS_MODULE=tests.testapp.settings
[pycodestyle]
max-line-length = 99
statistics = true
show-source = true
[pydocstyle]
match-dir = (?!tests|env|docs|\.).*
match = (?!setup).*.py
add_ignore = D1
[isort]
atomic = true
multi_line_output = 5
line_length = 79
skip = manage.py,docs
known_first_party = viewflow_extensions,tests
known_third_party = django,viewflow
combine_as_imports = true