mirror of
https://github.com/Hopiu/django-select2.git
synced 2026-04-19 04:31:03 +00:00
Adding templatetags to setup.py
This commit is contained in:
parent
f775bd53b0
commit
31512e0eb7
3 changed files with 3 additions and 3 deletions
2
README
2
README
|
|
@ -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.
|
||||
|
|
|
|||
|
|
@ -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.
|
||||
|
|
|
|||
2
setup.py
2
setup.py
|
|
@ -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,
|
||||
|
|
|
|||
Loading…
Reference in a new issue