3093980eb2
Change-Id: I3bf7b8b8778c57784044c17b0952e7390404779f
16 lines
519 B
Python
16 lines
519 B
Python
from setuptools import setup, find_packages
|
|
|
|
|
|
setup(name='keystone',
|
|
version='2012.1',
|
|
description="Authentication service for OpenStack",
|
|
license='Apache License (2.0)',
|
|
author='OpenStack, LLC.',
|
|
author_email='openstack@lists.launchpad.net',
|
|
url='http://www.openstack.org',
|
|
packages=find_packages(exclude=['test', 'bin']),
|
|
scripts=['bin/keystone-all', 'bin/keystone-manage'],
|
|
zip_safe=False,
|
|
install_requires=['setuptools', 'python-keystoneclient'],
|
|
)
|