Skip to content

Commit

Permalink
Squashing another pip installation bug
Browse files Browse the repository at this point in the history
Ensuring templates are included in both setup.py and MANIFEST.in
  • Loading branch information
respondcreate committed Feb 9, 2015
1 parent 935b54f commit 9bdd2b0
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 3 deletions.
1 change: 1 addition & 0 deletions MANIFEST.in
Expand Up @@ -4,3 +4,4 @@ recursive-include textplusstuff/static *.css
recursive-include textplusstuff/static *.eot
recursive-include textplusstuff/static *.svg
recursive-include textplusstuff/static *.woff
recursive-include textplusstuff/templates *.html
9 changes: 7 additions & 2 deletions docs/index.rst
Expand Up @@ -65,7 +65,7 @@ Each model registered with ``django-textplusstuff`` can have as many 'renditions
Current Version
---------------

0.1
0.1.2

Dependencies
````````````
Expand All @@ -87,10 +87,15 @@ Contents
Release Notes
=============

0.1.2
-----

- Another ``pip`` installation hotfix: including template files in distribution.

0.1.1
-----

- Squashing ``pip`` installation bug
- Squashed ``pip`` installation bug

0.1
---
Expand Down
3 changes: 2 additions & 1 deletion setup.py
Expand Up @@ -7,7 +7,7 @@
setup(
name='django-textplusstuff',
packages=find_packages(exclude=['tests*', 'docs*']),
version='0.1.1',
version='0.1.2',
author=u'Jonathan Ellenberger',
author_email='jonathan_ellenberger@wgbh.org',
url='http://github.com/WGBH/django-textplusstuff/',
Expand All @@ -24,6 +24,7 @@
'textplusstuff': [
'static/textplusstuff/darkly/*.css',
'static/textplusstuff/fonts/*.*',
'templates/textplusstuff/*.html'
]
},
classifiers=[
Expand Down

0 comments on commit 9bdd2b0

Please sign in to comment.