-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
41 lines (35 loc) · 967 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
[metadata]
name = imgflip
description = api to imgflip
url = https://github.com/axju/imgflip
author = axju
author_email = axel.juraske@short-report.de
license = MIT
long_description = file: README.rst
classifiers =
Intended Audience :: Developers
Operating System :: OS Independent
Programming Language :: Python
Programming Language :: Python :: 3.6
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
[tox:tox]
envlist = py36, py37, py38, flake8, pylint
skipt_missing_interpreters = True
[testenv]
deps =
coverage
pytest
commands = coverage run --source imgflip -m pytest
coverage report --fail-under=50
[testenv:flake8]
deps = flake8
commands = flake8 imgflip
[testenv:pylint]
deps = pylint
commands = pylint --rcfile=setup.cfg imgflip
[flake8]
max-line-length = 160
[pylint]
disable = missing-module-docstring, missing-function-docstring, invalid-name, too-many-arguments
max-line-length = 160