Author: leidel
Date: Sat Feb 28 16:50:42 2009
New Revision: 41
Modified:
trunk/robots/__init__.py
trunk/setup.py
Log:
Moved to setuptools and bumped version to 0.6.0
Modified: trunk/robots/__init__.py
==============================================================================
--- trunk/robots/__init__.py (original)
+++ trunk/robots/__init__.py Sat Feb 28 16:50:42 2009
@@ -1,2 +1,2 @@
-VERSION = (0, 5, 4)
+VERSION = (0, 6, 0)
__version__ = '.'.join(map(str, VERSION))
Modified: trunk/setup.py
==============================================================================
--- trunk/setup.py (original)
+++ trunk/setup.py Sat Feb 28 16:50:42 2009
@@ -1,4 +1,4 @@
-from distutils.core import setup
+from setuptools import setup, find_packages
setup(
name='django-robots',
@@ -8,8 +8,15 @@
author='Jannis Leidel',
author_email='[email protected]',
url='http://code.google.com/p/django-robots/',
- packages=['robots'],
- package_dir={'dbtemplates': 'dbtemplates'},
+ packages=find_packages(),
+ zip_safe=False,
+ package_dir={'robots': 'robots'},
+ package_data = {
+ 'robots': [
+ 'locale/*/LC_MESSAGES/*',
+ 'templates/robots/*.html',
+ ],
+ },
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
-~----------~----~----~----~------~----~------~--~---