summaryrefslogtreecommitdiffstats
path: root/setup.py
diff options
context:
space:
mode:
authorJoe Heck <heckj@mac.com>2012-01-09 10:28:55 -0800
committerJoe Heck <heckj@mac.com>2012-01-09 12:27:18 -0800
commit763013c5264e87dc8075d50117e5e394fccef1a7 (patch)
tree56e3db0488c7693c241fddb66563a261e342aa2e /setup.py
parent13ec79bf48a185a6f359d1e6c013bdfe24b7da53 (diff)
renaming keystonelight to keystone
Diffstat (limited to 'setup.py')
-rwxr-xr-xsetup.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/setup.py b/setup.py
index 21099e48..bf7a7833 100755
--- a/setup.py
+++ b/setup.py
@@ -1,13 +1,13 @@
from setuptools import setup, find_packages
-setup(name='keystonelight',
+setup(name='keystone',
version='1.0',
description="Authentication service for OpenStack",
author='OpenStack, LLC.',
author_email='openstack@lists.launchpad.net',
url='http://www.openstack.org',
packages=find_packages(exclude=['test', 'bin']),
- scripts=['bin/keystone', 'bin/ksl'],
+ scripts=['bin/keystone', 'bin/ks'],
zip_safe=False,
install_requires=['setuptools'],
)