From 7c1e7d8f8a3a7fd77a93afadd07204d5273225a3 Mon Sep 17 00:00:00 2001 From: Jesse Andrews Date: Sun, 24 Apr 2011 15:58:18 -0700 Subject: pep8 / whitespace --- setup.py | 33 +++++++++++++++++---------------- 1 file changed, 17 insertions(+), 16 deletions(-) (limited to 'setup.py') diff --git a/setup.py b/setup.py index b411cdb3..ea49ce0a 100644 --- a/setup.py +++ b/setup.py @@ -18,25 +18,26 @@ from setuptools import setup, find_packages version = '1.0' -setup( - name = 'keystone', - version = version, - description = "Authentication service - proposed for OpenStack", - license = 'Apache License (2.0)', - classifiers = [ "Programming Language :: Python", ], - keywords = 'identity auth authentication openstack', - author = 'OpenStack, LLC.', - author_email = 'openstack@lists.launchpad.net', - url = 'http://www.openstack.org', - include_package_data = True, - packages = find_packages(exclude=['test', 'bin']), - zip_safe = False, - install_requires = ['setuptools',], - entry_points = { +setup( + name='keystone', + version=version, + description="Authentication service - proposed for OpenStack", + license='Apache License (2.0)', + classifiers=["Programming Language :: Python"], + keywords='identity auth authentication openstack', + author='OpenStack, LLC.', + author_email='openstack@lists.launchpad.net', + url='http://www.openstack.org', + include_package_data=True, + packages=find_packages(exclude=['test', 'bin']), + zip_safe=False, + install_requires=['setuptools'], + entry_points={ 'paste.app_factory': ['main=identity:app_factory'], 'paste.filter_factory': [ 'papiauth=keystone.middleware.papiauth:filter_factory', - 'tokenauth=keystone.auth_protocol.auth_protocol_token:filter_factory', + 'tokenauth=keystone.auth_protocol.' + + 'auth_protocol_token:filter_factory', ], }, ) -- cgit