2011-11-08 15:03:15 -08:00
|
|
|
from setuptools import setup, find_packages
|
|
|
|
|
2012-01-09 10:28:55 -08:00
|
|
|
setup(name='keystone',
|
2012-01-09 13:27:17 -08:00
|
|
|
version='2012.1',
|
2011-11-08 15:03:15 -08:00
|
|
|
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']),
|
2012-01-09 10:28:55 -08:00
|
|
|
scripts=['bin/keystone', 'bin/ks'],
|
2011-11-08 15:03:15 -08:00
|
|
|
zip_safe=False,
|
|
|
|
install_requires=['setuptools'],
|
|
|
|
)
|