mirror of
https://github.com/PyCQA/flake8.git
synced 2026-03-31 03:06:53 +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",
|
||||
version=__version__,
|
||||
description="code checking using pep8 and pyflakes",
|
||||
long_description=README,
|
||||
author="Tarek Ziade",
|
||||
author_email="tarek@ziade.org",
|
||||
maintainer="Ian Cordasco",
|
||||
|
|
@ -22,15 +23,6 @@ setup(
|
|||
"pyflakes==0.6.1",
|
||||
"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={
|
||||
'distutils.commands': ['flake8 = flake8.main:Flake8Command'],
|
||||
'console_scripts': ['flake8 = flake8.main:main'],
|
||||
|
|
@ -39,6 +31,14 @@ setup(
|
|||
'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'],
|
||||
test_suite='nose.collector',
|
||||
)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue