1
0
mirror of https://github.com/ansible/tower-cli.git synced 2026-02-06 00:48:50 +01:00

include all packages, fixing a local instalation bug

This commit is contained in:
AlanCoding
2017-04-03 12:45:55 -04:00
parent 8d566347f0
commit bdf2673e5e

View File

@@ -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},