Skip to content

Commit

Permalink
Added the templates and fixtures to setup.py.
Browse files Browse the repository at this point in the history
Thanks, Jannis Leidel!
  • Loading branch information
marcin.kaszynski committed Feb 19, 2009
1 parent 9da2292 commit 570d0f0
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 2 deletions.
1 change: 1 addition & 0 deletions AUTHORS
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -21,3 +21,4 @@ Contributors:
m.meylan m.meylan
gonzalosaavedra gonzalosaavedra
JustinLilly JustinLilly
Jannis Leidel
5 changes: 5 additions & 0 deletions MANIFEST.in
Original file line number Original file line Diff line number Diff line change
@@ -0,0 +1,5 @@
include MANIFEST.in
recursive-include multilingual/templates *
recursive-include multilingual/flatpages/templates *
recursive-include testproject/templates *
recursive-include testproject/articles/fixtures/initial_data.xml
9 changes: 7 additions & 2 deletions setup.py
Original file line number Original file line Diff line number Diff line change
@@ -1,9 +1,14 @@
from setuptools import setup from setuptools import setup, find_packages


setup( setup(
name = 'django-multilingual', name = 'django-multilingual',
version = '0.1.0',
description = 'Multilingual extension for Django', description = 'Multilingual extension for Django',
author = 'Marcin Kaszynski', author = 'Marcin Kaszynski',
url = 'http://code.google.com/p/django-multilingual/', url = 'http://code.google.com/p/django-multilingual/',
packages = ['multilingual'], packages = find_packages(exclude=["testproject", "testproject.*"]),
zip_safe=False,
package_data = {
'': ['templates/*/*.html'],
},
) )

0 comments on commit 570d0f0

Please sign in to comment.