diff --git a/MANIFEST.in b/MANIFEST.in index 42e26ba..e89c252 100644 --- a/MANIFEST.in +++ b/MANIFEST.in @@ -1,5 +1,5 @@ include *.txt include *.rst -recursive-include taggit_templatetags2/templates *.html +recursive-include taggit_templatetags2/templates * recursive-exclude * __pycache__ recursive-exclude * *.py[co] diff --git a/setup.py b/setup.py index 378f5b9..19b742f 100755 --- a/setup.py +++ b/setup.py @@ -40,7 +40,7 @@ include_package_data=False, package_data={ # If any package contains *.txt or *.rst files, include them: - '': ['*.txt', '*.xml', '*.html'], + 'taggit_templatetags2': ['templates/*.html', 'templates/taggit_templatetags2/*.html'], }, zip_safe=False, install_requires=[ diff --git a/taggit_templatetags2/__init__.py b/taggit_templatetags2/__init__.py index 1102afb..e029b89 100644 --- a/taggit_templatetags2/__init__.py +++ b/taggit_templatetags2/__init__.py @@ -17,4 +17,4 @@ # 1.1 # 0.3.5b1 # 0.6c3 -__version__ = (1, 0, 0) +__version__ = (1, 0, 1)