diff -r 3a45e6424a69 MANIFEST.in --- a/MANIFEST.in Tue Oct 26 20:09:27 2010 +0300 +++ b/MANIFEST.in Thu Nov 04 09:09:13 2010 -0700 @@ -1,2 +1,4 @@ -include django_addons -include LICENSE +include LICENSE AUTHORS INSTALL +recursive-include docs/ ** +recursive-include django_addons/templates/ *.html + diff -r 3a45e6424a69 setup.py --- a/setup.py Tue Oct 26 20:09:27 2010 +0300 +++ b/setup.py Thu Nov 04 09:09:13 2010 -0700 @@ -33,7 +33,9 @@ 'Programming Language :: Python', 'Topic :: Software Development :: Libraries :: Python Modules', 'Topic :: Utilities'], - data_files=[ - ('django_addons/templates', glob.glob('django_addons/templates/*.html')), - ], + package_data = { + 'django_addons': [ + 'templates/authority/*.html', + ] + }, )