aboutsummaryrefslogtreecommitdiffstats
path: root/setup.py
diff options
context:
space:
mode:
authorChristopher Allan Webber <cwebber@dustycloud.org>2013-05-24 18:49:06 -0500
committerChristopher Allan Webber <cwebber@dustycloud.org>2013-05-24 18:49:19 -0500
commitb75eb88fabdac4a9fdc863969ec9472110732607 (patch)
tree08d7e402480e9ac5c5cca26956bc26f33ddc976f /setup.py
parent5471e08e7eb27872d7a656ed87911be307dd8290 (diff)
downloadmediagoblin-b75eb88fabdac4a9fdc863969ec9472110732607.tar.lz
mediagoblin-b75eb88fabdac4a9fdc863969ec9472110732607.tar.xz
mediagoblin-b75eb88fabdac4a9fdc863969ec9472110732607.zip
No more of this find_packages nonsense.
Explicitly declare mediagoblin as the only package. find_packages has caused messes in the past :) This commit sponsored by Pedro Ângelo. Thanks!
Diffstat (limited to 'setup.py')
-rw-r--r--setup.py4
1 files 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 <http://www.gnu.org/licenses/>.
-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