From f3709bc6b6288752aaee93ea051278841d7039de Mon Sep 17 00:00:00 2001 From: Peng Yong Date: Sun, 1 Apr 2012 18:33:56 +0800 Subject: [PATCH] add packages using find_packages() Change-Id: Ib745254276b67cc09f6a9e8d3ac8f5aea7741903 --- AUTHORS | 1 + setup.py | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/AUTHORS b/AUTHORS index 7f9754ba4..df10dcd15 100644 --- a/AUTHORS +++ b/AUTHORS @@ -42,6 +42,7 @@ Nicholas Mistry Nikolay Sokolov Pádraig Brady Pavel Shkitin +Peng Yong Rick Harris Robie Basak Russell Bryant diff --git a/setup.py b/setup.py index 457340926..264cbbaf8 100644 --- a/setup.py +++ b/setup.py @@ -37,7 +37,7 @@ setuptools.setup( long_description=read_file("README.rst"), license="Apache License, Version 2.0", url="https://github.com/openstack/python-novaclient", - packages=["novaclient", "novaclient.v1_1", "novaclient.v1_1.contrib"], + packages=setuptools.find_packages(exclude=['tests', 'tests.*']), install_requires=requirements, tests_require=["nose", "mock"], test_suite="nose.collector",