From f5a23c855ff20970782a6bd59f979f1a29538bc6 Mon Sep 17 00:00:00 2001 From: Joe Stump Date: Tue, 28 Jul 2015 22:20:10 -0700 Subject: [PATCH] Move away from find_packages() to explicitly declaring the package. --- setup.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index acc41e17..78119d69 100755 --- a/setup.py +++ b/setup.py @@ -1,5 +1,5 @@ #!/usr/bin/env python -from setuptools import setup, find_packages +from setuptools import setup import os, re PKG='oauth2' @@ -31,7 +31,7 @@ author="Joe Stump", author_email="joe@simplegeo.com", url="http://github.com/simplegeo/python-oauth2", - packages = find_packages(), + packages = ['oauth2'], install_requires = ['httplib2'], license = "MIT License", keywords="oauth",