
Change-Id: I29ad27eca617e9ca801024d598d665cf1a2728d0 Signed-off-by: Rosario Di Somma <rosario.disomma@dreamhost.com>
19 lines
476 B
Python
19 lines
476 B
Python
from setuptools import setup, find_packages
|
|
|
|
|
|
setup(
|
|
name='akanda-quantum',
|
|
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,
|
|
)
|