pep8 is now pycodestyle https://github.com/PyCQA/pycodestyle/issues/466
This commit is contained in:
parent
3607deae80
commit
68db2da2e9
5
setup.py
5
setup.py
|
@ -1,5 +1,5 @@
|
||||||
#!/usr/bin/env python
|
#!/usr/bin/env python
|
||||||
from setuptools import setup, find_packages
|
from setuptools import find_packages, setup
|
||||||
|
|
||||||
|
|
||||||
setup(
|
setup(
|
||||||
|
@ -7,7 +7,8 @@ setup(
|
||||||
version="1.9.0",
|
version="1.9.0",
|
||||||
author="Amr Hassan <amr.hassan@gmail.com>",
|
author="Amr Hassan <amr.hassan@gmail.com>",
|
||||||
install_requires=['six'],
|
install_requires=['six'],
|
||||||
tests_require=['mock', 'pytest', 'coverage', 'pep8', 'pyyaml', 'pyflakes'],
|
tests_require=['mock', 'pytest', 'coverage', 'pycodestyle', 'pyyaml',
|
||||||
|
'pyflakes'],
|
||||||
description=("A Python interface to Last.fm and Libre.fm"),
|
description=("A Python interface to Last.fm and Libre.fm"),
|
||||||
author_email="amr.hassan@gmail.com",
|
author_email="amr.hassan@gmail.com",
|
||||||
url="https://github.com/pylast/pylast",
|
url="https://github.com/pylast/pylast",
|
||||||
|
|
12
tox.ini
12
tox.ini
|
@ -23,22 +23,22 @@ commands = {posargs}
|
||||||
|
|
||||||
[testenv:py2lint]
|
[testenv:py2lint]
|
||||||
deps =
|
deps =
|
||||||
pep8
|
pycodestyle
|
||||||
pyflakes
|
pyflakes
|
||||||
clonedigger
|
clonedigger
|
||||||
commands =
|
commands =
|
||||||
pyflakes pylast
|
pyflakes pylast
|
||||||
pyflakes tests
|
pyflakes tests
|
||||||
pep8 pylast
|
pycodestyle pylast
|
||||||
pep8 tests
|
pycodestyle tests
|
||||||
./clonedigger.sh
|
./clonedigger.sh
|
||||||
|
|
||||||
[testenv:py3lint]
|
[testenv:py3lint]
|
||||||
deps =
|
deps =
|
||||||
pep8
|
pycodestyle
|
||||||
pyflakes
|
pyflakes
|
||||||
commands =
|
commands =
|
||||||
pyflakes pylast
|
pyflakes pylast
|
||||||
pyflakes tests
|
pyflakes tests
|
||||||
pep8 pylast
|
pycodestyle pylast
|
||||||
pep8 tests
|
pycodestyle tests
|
||||||
|
|
Loading…
Reference in a new issue