From 2c572cb884ee8c75d4f730cce43c9905bd590d33 Mon Sep 17 00:00:00 2001 From: Joseph Spiros Date: Fri, 4 Nov 2011 15:32:19 -0400 Subject: [PATCH] Added include_package_data option to setup.py to ensure MANIFEST.in is actually heeded. --- setup.py | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/setup.py b/setup.py index 82ba104..8a91d14 100644 --- a/setup.py +++ b/setup.py @@ -1,7 +1,5 @@ #!/usr/bin/env python - import os - from setuptools import setup, find_packages @@ -17,6 +15,7 @@ setup( maintainer = "iThink Software", maintainer_email = "contact@ithinksw.com", packages = find_packages(), + include_package_data=True, classifiers = [ 'Environment :: Web Environment', @@ -47,4 +46,4 @@ setup( dependency_links = [ 'https://github.com/django-mptt/django-mptt/tarball/master#egg=django-mptt-dev' ] -) \ No newline at end of file +) -- 2.20.1