Author: batiste.bieler
Date: Thu Feb 12 05:02:02 2009
New Revision: 338
Modified:
trunk/setup.py
Log:
Correct typos in setup.py
Modified: trunk/setup.py
==============================================================================
--- trunk/setup.py (original)
+++ trunk/setup.py Thu Feb 12 05:02:02 2009
@@ -1,8 +1,8 @@
from distutils.core import setup
import glob
-datas = [ "locale/" + l.rsplit('/')[-1]+"/LC_MESSAGES/*.*" for l in
glob.glob("pages/locale/*")]
-datas.extend([
+data = [ "locale/" + l.rsplit('/')[-1]+"/LC_MESSAGES/*.*" for l in
glob.glob("pages/locale/*")]
+data.extend([
'templates/admin/pages/page/*.html',
'templates/pages/*.html',
'fixtures/*.json'
@@ -16,7 +16,11 @@
author='Batiste Bieler',
author_email='[email protected]',
url='http://code.google.com/p/django-page-cms/',
- requires=('html5lib (>=0.10)', 'tagging (>=0.2.1)', 'django_mptt
(>=0.2.1)', ),
+ requires=(
+ 'html5lib (>=0.10)',
+ 'tagging (>0.2.1)', # please use the trunk version of tagging
+ 'django_mptt (>=0.2.1)',
+ ),
packages=[
'pages',
'pages.admin',
@@ -24,7 +28,7 @@
#'example',
],
package_dir={'pages': 'pages', 'pages.locale': 'locale', 'pages.templates':
'templates'},
- package_data={'pages': datas},
+ package_data={'pages': data},
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
-~----------~----~----~----~------~----~------~--~---