summaryrefslogtreecommitdiffstats
path: root/setup.py
diff options
context:
space:
mode:
authorJesse Andrews <anotherjesse@gmail.com>2011-04-24 15:58:18 -0700
committerJesse Andrews <anotherjesse@gmail.com>2011-04-24 15:58:18 -0700
commit7c1e7d8f8a3a7fd77a93afadd07204d5273225a3 (patch)
treed44a75d2caec6771990274c97114ec138471d1ef /setup.py
parentf86bdc3c2cc4b47471aa37be6506414d121bf93f (diff)
pep8 / whitespace
Diffstat (limited to 'setup.py')
-rw-r--r--setup.py33
1 files changed, 17 insertions, 16 deletions
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',
],
},
)