adjutant/setup.py
adriant a8ec7f8c02 renaming for packaging, adding setup file
packaging still not done, but this will help
with it later.

Change-Id: Iec976ae732e8943cff52a76655c4ba1e35ebb833
2015-02-26 15:20:27 +13:00

37 lines
1.0 KiB
Python

from setuptools import setup, find_packages
setup(
name='openstack-registration',
version='0.1.0a1',
description='A user registration service for openstack.',
long_description=(
'A registration service to sit alongside keystone and ' +
'add some missing functionality.'),
url='https://github.com/catalyst/openstack-registration',
author='Adrian Turjak',
author_email='adriant@catalyst.net.nz',
license='Apache 2.0',
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python :: 2.7',
],
keywords='openstack registration keystone users',
packages=find_packages(),
install_requires=[
'Django>=1.7.3',
'djangorestframework>=3.0.3',
'decorator>=3.4.0',
'jsonfield>=1.0.2',
'keystonemiddleware>=1.3.1',
'python-keystoneclient>=1.0.0',
'python-neutronclient>=2.3.10'
],
)