Skip to content

Commit c91d0a6

Browse files
committedSep 12, 2012
More install fixes
1 parent d49950d commit c91d0a6

File tree

3 files changed

+5
-2
lines changed

3 files changed

+5
-2
lines changed
 

‎MANIFEST.in

+1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
include README.md
22
include LICENSE
33
recursive-include doc *.png *.md *.txt
4+
recursive-include template_previewer/template_parser *.py
45
recursive-include template_previewer/static *.css *.js
56
recursive-include template_previewer/templates *.html
67

‎README.md

+3-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ having to modify code, or generate custom data.
1111
Installation
1212
============
1313

14-
You can install as any standard python package, from zipfile or pypi:
14+
You can install as any standard python package, from zip file or pypi:
1515

1616
pip install django-template-previewer
1717

@@ -44,6 +44,8 @@ No syncdb/migration is required; this application does not use the database.
4444
The app assumes you are using Django's app template loader and app staticfile
4545
finder. Otherwise, its views won't work properly.
4646

47+
Note that you require Django 1.4
48+
4749
Usage
4850
=====
4951

‎setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
setup(
77
name='django-template-previewer',
8-
version='0.1',
8+
version='0.1.1',
99
description=u'A Django app to allow developers preview templates',
1010
long_description=__doc__,
1111
author=u'Daniel F. Moisset',

0 commit comments

Comments
 (0)
Please sign in to comment.