19 lines
476 B
Python
Raw Normal View History

from setuptools import setup, find_packages
setup(
name='akanda-quantum',
2012-12-12 16:18:58 -05:00
version='0.1.4',
description='OpenStack L3 User-Facing REST API for Quantum',
author='DreamHost',
author_email='dev-community@dreamhost.com',
url='http://github.com/dreamhost/akanda',
license='BSD',
install_requires=[
],
namespace_packages=['akanda'],
packages=find_packages(exclude=['test', 'smoke']),
include_package_data=True,
zip_safe=False,
)