setup.py: reorder entries

This commit is contained in:
Florent Xicluna 2013-02-20 22:30:24 +01:00
parent fa092c0294
commit 20b49ee257

View file

@ -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',
) )