forked from pycontribs/jira
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
123 lines (110 loc) · 2.38 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
[metadata]
name = jira
author = Ben Speakmon
author-email = [email protected]
maintainer = Sorin Sbarnea
maintainer-email = [email protected]
summary = Python library for interacting with JIRA via REST APIs.
description-file =
README.rst
ChangeLog
home-page = https://github.com/pycontribs/jira
license = BSD
classifier =
Development Status :: 5 - Production/Stable
Environment :: Other Environment
Intended Audience :: Developers
Intended Audience :: Information Technology
License :: OSI Approved :: BSD License
Operating System :: OS Independent
Programming Language :: Python
Programming Language :: Python :: 2.7
Programming Language :: Python :: 3
Programming Language :: Python :: 3.4
Programming Language :: Python :: 3.5
Programming Language :: Python :: 3.6
Topic :: Software Development :: Libraries :: Python Modules
Topic :: Internet :: WWW/HTTP
keywords =
api
atlassian
jira
rest
web
rest
[files]
packages =
jira
#[options.extras_require]
[extras]
cli =
ipython>=4.0.0
opt =
filemagic>=1.6
PyJWT
requests_jwt
requests_kerberos
testing =
coveralls>=1.1
docutils>=0.12
flaky
hacking>=0.13
MarkupSafe>=0.23
oauthlib
py >= 1.4
pytest-cache
pytest-cov
pytest-instafail
pytest-xdist>=1.14
pytest>=2.9.1
requires.io
sphinx>=1.3.5
sphinx_rtd_theme
tenacity
tox-pyenv
tox>=2.3.1
unittest2:python_version<'3.1'
wheel>=0.24.0
xmlrunner>=1.7.7
yanc>=0.3.3
[entry_points]
console_scripts =
jirashell = jira.jirashell:main
[egg_info]
egg_base = .
[aliases]
test=pytest
[bdist_wheel]
universal = 1
[build_sphinx]
source-dir = docs
build-dir = docs/build
all_files = 1
[upload_sphinx]
upload-dir = docs/build/html
[flake8]
max-line-length=160
exclude=build,.eggs,.tox
statistics=yes
ignore = D100,D101,D102,D103,F405,B001,B002
# TODO(ssbarnea): remove ignored flake8 rules one by one by fixing them.
[pep8]
exclude=build,lib,.tox,third,*.egg,docs,packages,.eggs
;filename=
;select
ignore=E501,E265,E402
max-line-length=160
statistics=yes
;format
;quiet
;show-pep8
;show-source
;verbose=1
;PEP8_OPTS="--filename=*.py --exclude=lib --ignore=E501 scripts"
;pep8 $PEP8_OPTS --show-source --repeat
;pep8 --statistics -qq $PEP8_OPTS
[pbr]
warnerrors = true
[pycodestyle]
max-line-length=160
exclude = .eggs,.tox,build