Skip to content

Commit bbe3137

Browse files
committed
Release 0.0.5
1 parent ad1bb01 commit bbe3137

File tree

3 files changed

+9
-8
lines changed

3 files changed

+9
-8
lines changed

MANIFEST.in

+3-2
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ include README.rst
77
recursive-include tests *
88
recursive-exclude * __pycache__
99
recursive-exclude * *.py[co]
10-
recursive-include foundation_formtags/template*
11-
recursive-include foundation_formtags/tests
10+
recursive-include foundation_formtags/templates *
11+
recursive-include foundation_formtags/templatetags *
12+
recursive-include foundation_formtags/tests *
1213
recursive-include docs *.rst conf.py Makefile make.bat

foundation_formtags/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@
22

33
__author__ = 'Christopher Clarke'
44
__email__ = '[email protected]'
5-
__version__ = '0.0.4'
5+
__version__ = '0.0.5'

setup.py

+5-5
Original file line numberDiff line numberDiff line change
@@ -16,18 +16,18 @@
1616

1717
requirements = [
1818
# TODO: put package requirements here
19-
"Django>=1.6,<=1.9.2",
19+
"Django>=1.6,<1.10",
2020
]
2121

2222
test_requirements = [
2323
# TODO: put package test requirements here
24-
"Django>=1.6,<=1.9.2",
24+
"Django>=1.6,<1,10",
2525
]
2626

2727
setup(
28-
name='foundation_formtags',
29-
version='0.0.4',
30-
description="Django templatetags to add Zurb Foundation support to Django Forms",
28+
name='django-foundation-formtags',
29+
version='0.0.5',
30+
description="Templatetags to add Zurb Foundation support to Django Forms",
3131
long_description=readme + '\n\n' + history,
3232
author="Christopher Clarke",
3333
author_email='[email protected]',

0 commit comments

Comments
 (0)