From c4915752301c909968e6fd794186df4c78d3399a Mon Sep 17 00:00:00 2001 From: Julien Danjou Date: Sun, 27 Sep 2015 13:18:54 +0200 Subject: [PATCH] Make setup.py pep8 compliant --- setup.py | 46 +++++++++++++++++++++++----------------------- 1 file changed, 23 insertions(+), 23 deletions(-) diff --git a/setup.py b/setup.py index 6fca6f7..63c169f 100644 --- a/setup.py +++ b/setup.py @@ -128,13 +128,13 @@ setup(name=PROJECT, 'Jinja2==2.7.3' ), tests_require=( - 'nose==1.3.6', - 'mock==1.0.1', - 'pyquery==1.2.9', - 'docutils==0.12', - 'Pillow==2.7.0', - 'pyScss==1.3.4', - 'flake8==2.4.1' + 'nose==1.3.6', + 'mock==1.0.1', + 'pyquery==1.2.9', + 'docutils==0.12', + 'Pillow==2.7.0', + 'pyScss==1.3.4', + 'flake8==2.4.1' ), test_suite='nose.collector', include_package_data=True, @@ -152,21 +152,21 @@ setup(name=PROJECT, }, license='MIT', classifiers=[ - 'Development Status :: 4 - Beta', - 'Environment :: Console', - 'Intended Audience :: End Users/Desktop', - 'Intended Audience :: Developers', - 'Intended Audience :: System Administrators', - 'License :: OSI Approved :: MIT License', - 'Operating System :: MacOS :: MacOS X', - 'Operating System :: Unix', - 'Operating System :: POSIX', - 'Operating System :: Microsoft :: Windows', - 'Programming Language :: Python', - 'Topic :: Software Development', - 'Topic :: Software Development :: Build Tools', - 'Topic :: Software Development :: Code Generators', - 'Topic :: Internet', - 'Topic :: Internet :: WWW/HTTP :: Site Management', + 'Development Status :: 4 - Beta', + 'Environment :: Console', + 'Intended Audience :: End Users/Desktop', + 'Intended Audience :: Developers', + 'Intended Audience :: System Administrators', + 'License :: OSI Approved :: MIT License', + 'Operating System :: MacOS :: MacOS X', + 'Operating System :: Unix', + 'Operating System :: POSIX', + 'Operating System :: Microsoft :: Windows', + 'Programming Language :: Python', + 'Topic :: Software Development', + 'Topic :: Software Development :: Build Tools', + 'Topic :: Software Development :: Code Generators', + 'Topic :: Internet', + 'Topic :: Internet :: WWW/HTTP :: Site Management', ], zip_safe=False,)