-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.cfg
61 lines (51 loc) · 1.15 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
[metadata]
name = mimics
author = Maarten De Paepe
author-email = "[email protected]"
summary = Small tool for deferring actions and operations on objects and classes
description-file = README.md
long-description-content-type = text/markdown
home-page = https://github.com/maarten-dp/mimics
classifier =
Development Status :: 4 - Beta
Operating System :: MacOS :: MacOS X
Operating System :: Microsoft :: Windows
Operating System :: POSIX
License :: OSI Approved :: MIT License
Programming Language :: Python
Programming Language :: Python :: 3.6
[files]
packages = mimics
[pbr]
warnerrors = True
[wheel]
universal = 1
[flake8]
exclude = */migrations/*,*/south_migrations/*
max-line-length = 100
ignore =
# W503: line break before binary operator
W503,
# W504: line break after binary operator
W504,
[isort]
line_length = 100
[yapf]
indent_dictionary_value = true
allow_split_before_dict_value = false
[tool:pytest]
norecursedirs =
.git
.tox
.env
.eggs
.cache
dist
build
south_migrations
migrations
chunk_scripts
python_files =
test_*.py
*_test.py
tests.py