
Ignore the test and smoke directories when looking for python packages, to avoid having the files installed. Include the directories in the source distribution, so they are available to be run if the source package is downloaded. Change-Id: I31a11c8c7edc5a17cb050be3c045ef270eb57894 Signed-off-by: Rosario Di Somma <rosario.disomma@dreamhost.com>
21 lines
487 B
Python
21 lines
487 B
Python
import os
|
|
|
|
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,
|
|
)
|