Author: leidel
Date: Mon May 11 03:55:22 2009
New Revision: 101
Modified:
trunk/MANIFEST.in
trunk/messages/__init__.py
trunk/setup.py
Log:
Added better package data handling to please setuptools' easy_install.
Bumped to 0.4.1
Modified: trunk/MANIFEST.in
==============================================================================
--- trunk/MANIFEST.in (original)
+++ trunk/MANIFEST.in Mon May 11 03:55:22 2009
@@ -2,7 +2,7 @@
include LICENSE
include INSTALL
include README
-recursive-include messages/locale *
-recursive-include messages/templates/ *
+recursive-include messages/locale *.po *.mo
+recursive-include messages/templates *.html *.txt
include docs/*
exclude docs/conf.py
Modified: trunk/messages/__init__.py
==============================================================================
--- trunk/messages/__init__.py (original)
+++ trunk/messages/__init__.py Mon May 11 03:55:22 2009
@@ -1,2 +1,2 @@
-VERSION = (0, 4, 0)
+VERSION = (0, 4, 1)
__version__ = '.'.join(map(str, VERSION))
Modified: trunk/setup.py
==============================================================================
--- trunk/setup.py (original)
+++ trunk/setup.py Mon May 11 03:55:22 2009
@@ -11,6 +11,13 @@
'messages',
'messages.templatetags',
),
+ package_data={
+ 'messages': [
+ 'templates/messages/*',
+ 'templates/notification/*/*',
+ 'locale/*/LC_MESSAGES/*',
+ ]
+ },
classifiers=(
'Development Status :: 4 - Beta',
'Environment :: Web Environment',
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"pinax-updates" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/pinax-updates?hl=en
-~----------~----~----~----~------~----~------~--~---