From 712d21e815c06b5ef4d5a332428ef8229ee4c331 Mon Sep 17 00:00:00 2001 From: Pierre-Yves Chibon Date: Jul 17 2015 10:55:14 +0000 Subject: Let's be pep8 valid in the setup.py --- diff --git a/setup.py b/setup.py index 31a6cf1..1c2018e 100644 --- a/setup.py +++ b/setup.py @@ -1,16 +1,16 @@ from distutils.core import setup setup( - name = 'libpagure', - packages = ['libpagure'], - version = '0.21', - description = 'A Python library for Pagure APIs.', - author = 'Lei Yang', - author_email = 'yltt1234512@gmail.com', - url = 'https://github.com/yangl1996/libpagure', - download_url = 'https://github.com/yangl1996/libpagure/tarball/0.21', - keywords = ['pagure', 'api', 'library'], - classifiers = [ + name='libpagure', + packages=['libpagure'], + version='0.21', + description='A Python library for Pagure APIs.', + author='Lei Yang', + author_email='yltt1234512@gmail.com', + url='https://github.com/yangl1996/libpagure', + download_url='https://github.com/yangl1996/libpagure/tarball/0.21', + keywords=['pagure', 'api', 'library'], + classifiers=[ 'Programming Language :: Python', ], - license = "GNU General Public License v2.0", + license='GNU General Public License v2.0', )