mirror of
https://github.com/PyCQA/flake8.git
synced 2026-04-06 21:16:54 +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
|
from setuptools import setup # NOQA
|
||||||
kwargs = {
|
kwargs = {
|
||||||
'entry_points': {
|
'entry_points': {
|
||||||
'distutils.commands': ['flake8 = flake8.run:Flake8Command'],
|
'distutils.commands': ['flake8 = flake8.main:Flake8Command'],
|
||||||
'console_scripts': ['flake8 = flake8.run:main']
|
'console_scripts': ['flake8 = flake8.main:main']
|
||||||
},
|
},
|
||||||
'tests_require': ['nose'],
|
'tests_require': ['nose'],
|
||||||
'test_suite': 'nose.collector',
|
'test_suite': 'nose.collector',
|
||||||
|
|
@ -42,7 +42,7 @@ setup(
|
||||||
url="http://bitbucket.org/tarek/flake8",
|
url="http://bitbucket.org/tarek/flake8",
|
||||||
packages=["flake8", "flake8.tests"],
|
packages=["flake8", "flake8.tests"],
|
||||||
scripts=scripts,
|
scripts=scripts,
|
||||||
requires=["flakey (>=2.0)", "pep8 (>=1.4)"],
|
install_requires=["flakey (==2.0)", "pep8 (>=1.4)"],
|
||||||
long_description=README,
|
long_description=README,
|
||||||
classifiers=[
|
classifiers=[
|
||||||
"Environment :: Console",
|
"Environment :: Console",
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue