From bdf2673e5e8da0aa1cd00a2bde63c73e35d65616 Mon Sep 17 00:00:00 2001 From: AlanCoding Date: Mon, 3 Apr 2017 12:45:55 -0400 Subject: [PATCH] include all packages, fixing a local instalation bug --- setup.py | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/setup.py b/setup.py index ee5ca53..07df3e0 100644 --- a/setup.py +++ b/setup.py @@ -19,6 +19,7 @@ import re import sys from distutils.core import setup +from setuptools import find_packages from setuptools.command.test import test as TestCommand @@ -130,9 +131,7 @@ setup( scripts=[ 'bin/tower-cli', ], - packages=[ - 'tower_cli', - ], + packages=find_packages(exclude=['tests']), # How to do the tests tests_require=['tox'], cmdclass={'test': Tox},