From b75eb88fabdac4a9fdc863969ec9472110732607 Mon Sep 17 00:00:00 2001 From: Christopher Allan Webber Date: Fri, 24 May 2013 18:49:06 -0500 Subject: [PATCH] No more of this find_packages nonsense. MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Explicitly declare mediagoblin as the only package. find_packages has caused messes in the past :) This commit sponsored by Pedro Ângelo. Thanks! --- setup.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index 312de2f8..4ceac45b 100644 --- a/setup.py +++ b/setup.py @@ -14,7 +14,7 @@ # You should have received a copy of the GNU Affero General Public License # along with this program. If not, see . -from setuptools import setup, find_packages +from setuptools import setup import os import re @@ -36,7 +36,7 @@ def get_version(): setup( name="mediagoblin", version=get_version(), - packages=find_packages(exclude=['ez_setup', 'examples', 'tests']), + packages=['mediagoblin'], zip_safe=False, include_package_data = True, # scripts and dependencies -- 2.25.1