-
Notifications
You must be signed in to change notification settings - Fork 11
/
setup.cfg
64 lines (55 loc) · 984 Bytes
/
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
[metadata]
name = pymaven
author = Walter Scheper
author_email = [email protected]
summary = Python access to maven
description-file = README.rst
home-page = https://github.com/sassoftware/pymaven
license = Apache-2
license_file = LICENSE
[extras]
development =
detox
epdb
flake8
isort
yapf
[pbr]
skip_changelog = true
[bdist_wheel]
universal = 1
[flake8]
max_line_length = 120
exclude = tests/*,*/migrations/*,*/south_migrations/*
[coverage:paths]
source =
pymaven
*/site-packages/pymaven
[coverage:run]
branch = true
source = pymaven
parallel = true
[coverage:report]
show_missing = true
precision = 2
[tool:pytest]
norecursedirs =
.eggs
.env
.git
.tox
build
dist
migrations
south_migrations
python_files =
test_*.py
*_test.py
tests.py
[isort]
force_single_line = true
from_first = true
line_length = 120
known_first_party = pymaven
default_section = THIRDPARTY
skip = migrations, south_migrations