Added include_package_data option to setup.py to ensure MANIFEST.in is actually heeded.
authorJoseph Spiros <joseph.spiros@ithinksw.com>
Fri, 4 Nov 2011 19:32:19 +0000 (15:32 -0400)
committerJoseph Spiros <joseph.spiros@ithinksw.com>
Fri, 4 Nov 2011 19:32:19 +0000 (15:32 -0400)
setup.py

index 82ba104..8a91d14 100644 (file)
--- 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
+)