summaryrefslogtreecommitdiff
path: root/setup.py
blob: 6c1ce8486db74f202b1ef5f83ebe3b24ab28aef1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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', 'bin/keystone-manage'],
      zip_safe=False,
      install_requires = ['setuptools', 'python-keystoneclient'],
      )