Author: batiste.bieler
Date: Mon Feb 2 02:36:56 2009
New Revision: 323
Modified:
trunk/pages/__init__.py
trunk/setup.py
Log:
Update the setup.py file
Modified: trunk/pages/__init__.py
==============================================================================
--- trunk/pages/__init__.py (original)
+++ trunk/pages/__init__.py Mon Feb 2 02:36:56 2009
@@ -1,2 +1,2 @@
-VERSION = (0, 2, 0, 'pre')
-__version__ = '.'.join(map(str, VERSION))
\ No newline at end of file
+VERSION = (0, 2, 2, 'pre')
+__version__ = '.'.join(map(str, VERSION))
Modified: trunk/setup.py
==============================================================================
--- trunk/setup.py (original)
+++ trunk/setup.py Mon Feb 2 02:36:56 2009
@@ -1,4 +1,13 @@
from distutils.core import setup
+import glob
+
+datas = [ "locale/" + l.rsplit('/')[-1]+"/LC_MESSAGES/*.*" for l in
glob.glob("pages/locale/*")]
+datas.extend([
+ 'templates/admin/pages/page/*.html',
+ 'templates/pages/*.html',
+ 'fixtures/*.json'
+ ]
+)
setup(
name='django-page-cms',
@@ -11,16 +20,20 @@
'pages',
'pages.admin',
'pages.templatetags',
- 'example',
+ #'example',
],
- package_dir={'pages': 'pages'},
+
package_dir={'pages': 'pages', 'pages.locale': 'locale', 'pages.templates':
'templates'},
+ package_data={'pages': datas},
classifiers=[
- 'Development Status :: 3 - Alpha',
+ 'Development Status :: 4 - Beta',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Framework :: Django',
+ 'Programming Language :: Python :: 2.3',
+ 'Programming Language :: JavaScript',
+ 'Topic :: Internet :: WWW/HTTP :: Site Management',
]
)
--~--~---------~--~----~------------~-------~--~----~
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
-~----------~----~----~----~------~----~------~--~---