Adding templatetags to setup.py

This commit is contained in:
AppleGrew (applegrew) 2012-09-29 01:30:08 +05:30
parent f775bd53b0
commit 31512e0eb7
3 changed files with 3 additions and 3 deletions

2
README
View file

@ -48,7 +48,7 @@ Special Thanks
Changelog Summary
=================
### v3.1.0
### v3.1.1
* Bumping up minor version since Select2 JS has been updated to version 3.2. It seems Select2 JS now includes new higher resolution icons for [Retina displays](http://en.wikipedia.org/wiki/Retina_Display).
* Fixed an issue in `setup.py` because of which `templatetags` directory was not included in last PIP releases' tar file.

View file

@ -48,7 +48,7 @@ Special Thanks
Changelog Summary
=================
### v3.1.0
### v3.1.1
* Bumping up minor version since Select2 JS has been updated to version 3.2. It seems Select2 JS now includes new higher resolution icons for [Retina displays](http://en.wikipedia.org/wiki/Retina_Display).
* Fixed an issue in `setup.py` because of which `templatetags` directory was not included in last PIP releases' tar file.

View file

@ -120,7 +120,7 @@ setup(
author_email=AUTHOR_EMAIL,
license="LICENSE.txt",
url=URL,
packages=[PACKAGE],
packages=[PACKAGE, PACKAGE + '.templatetags'],
package_data=find_package_data(),
exclude_package_data={ '': standard_exclude },
include_package_data=True,