diff options
| author | Jesse Andrews <anotherjesse@gmail.com> | 2011-04-24 15:58:18 -0700 |
|---|---|---|
| committer | Jesse Andrews <anotherjesse@gmail.com> | 2011-04-24 15:58:18 -0700 |
| commit | 7c1e7d8f8a3a7fd77a93afadd07204d5273225a3 (patch) | |
| tree | d44a75d2caec6771990274c97114ec138471d1ef /setup.py | |
| parent | f86bdc3c2cc4b47471aa37be6506414d121bf93f (diff) | |
pep8 / whitespace
Diffstat (limited to 'setup.py')
| -rw-r--r-- | setup.py | 33 |
1 files changed, 17 insertions, 16 deletions
@@ -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', ], }, ) |
