mirror of
https://github.com/PyCQA/flake8.git
synced 2026-03-29 10:36:53 +00:00
Some changes re #59
This commit is contained in:
parent
b2395b9ccd
commit
f06f484b21
1 changed files with 3 additions and 3 deletions
6
setup.py
6
setup.py
|
|
@ -15,8 +15,8 @@ else:
|
|||
from setuptools import setup # NOQA
|
||||
kwargs = {
|
||||
'entry_points': {
|
||||
'distutils.commands': ['flake8 = flake8.run:Flake8Command'],
|
||||
'console_scripts': ['flake8 = flake8.run:main']
|
||||
'distutils.commands': ['flake8 = flake8.main:Flake8Command'],
|
||||
'console_scripts': ['flake8 = flake8.main:main']
|
||||
},
|
||||
'tests_require': ['nose'],
|
||||
'test_suite': 'nose.collector',
|
||||
|
|
@ -42,7 +42,7 @@ setup(
|
|||
url="http://bitbucket.org/tarek/flake8",
|
||||
packages=["flake8", "flake8.tests"],
|
||||
scripts=scripts,
|
||||
requires=["flakey (>=2.0)", "pep8 (>=1.4)"],
|
||||
install_requires=["flakey (==2.0)", "pep8 (>=1.4)"],
|
||||
long_description=README,
|
||||
classifiers=[
|
||||
"Environment :: Console",
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue