mirror of
https://github.com/PyCQA/flake8.git
synced 2026-04-12 07:44:16 +00:00
setup.py: reorder entries
This commit is contained in:
parent
fa092c0294
commit
20b49ee257
1 changed files with 9 additions and 9 deletions
18
setup.py
18
setup.py
|
|
@ -10,6 +10,7 @@ setup(
|
||||||
license="MIT",
|
license="MIT",
|
||||||
version=__version__,
|
version=__version__,
|
||||||
description="code checking using pep8 and pyflakes",
|
description="code checking using pep8 and pyflakes",
|
||||||
|
long_description=README,
|
||||||
author="Tarek Ziade",
|
author="Tarek Ziade",
|
||||||
author_email="tarek@ziade.org",
|
author_email="tarek@ziade.org",
|
||||||
maintainer="Ian Cordasco",
|
maintainer="Ian Cordasco",
|
||||||
|
|
@ -22,15 +23,6 @@ setup(
|
||||||
"pyflakes==0.6.1",
|
"pyflakes==0.6.1",
|
||||||
"pep8==1.4.2",
|
"pep8==1.4.2",
|
||||||
],
|
],
|
||||||
long_description=README,
|
|
||||||
classifiers=[
|
|
||||||
"Environment :: Console",
|
|
||||||
"Intended Audience :: Developers",
|
|
||||||
"License :: OSI Approved :: MIT License",
|
|
||||||
"Programming Language :: Python",
|
|
||||||
"Topic :: Software Development",
|
|
||||||
"Topic :: Utilities",
|
|
||||||
],
|
|
||||||
entry_points={
|
entry_points={
|
||||||
'distutils.commands': ['flake8 = flake8.main:Flake8Command'],
|
'distutils.commands': ['flake8 = flake8.main:Flake8Command'],
|
||||||
'console_scripts': ['flake8 = flake8.main:main'],
|
'console_scripts': ['flake8 = flake8.main:main'],
|
||||||
|
|
@ -39,6 +31,14 @@ setup(
|
||||||
'C90 = flake8.mccabe:McCabeChecker',
|
'C90 = flake8.mccabe:McCabeChecker',
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
|
classifiers=[
|
||||||
|
"Environment :: Console",
|
||||||
|
"Intended Audience :: Developers",
|
||||||
|
"License :: OSI Approved :: MIT License",
|
||||||
|
"Programming Language :: Python",
|
||||||
|
"Topic :: Software Development",
|
||||||
|
"Topic :: Utilities",
|
||||||
|
],
|
||||||
tests_require=['nose'],
|
tests_require=['nose'],
|
||||||
test_suite='nose.collector',
|
test_suite='nose.collector',
|
||||||
)
|
)
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue