Author: leidel
Date: Sun Feb 1 07:11:25 2009
New Revision: 156
Modified:
trunk/notification/__init__.py
trunk/setup.py
Log:
Updated setup.py to use setuptools to find all media files and bumped minor
version up.
Modified: trunk/notification/__init__.py
==============================================================================
--- trunk/notification/__init__.py (original)
+++ trunk/notification/__init__.py Sun Feb 1 07:11:25 2009
@@ -1,4 +1,4 @@
-VERSION = (0, 1, 1, "final")
+VERSION = (0, 1, 2, "final")
def get_version():
if VERSION[3] != "final":
Modified: trunk/setup.py
==============================================================================
--- trunk/setup.py (original)
+++ trunk/setup.py Sun Feb 1 07:11:25 2009
@@ -1,4 +1,4 @@
-from distutils.core import setup
+from setuptools import setup, find_packages
setup(
name='django-notification',
@@ -8,12 +8,7 @@
author='James Tauber',
author_email='[email protected]',
url='http://code.google.com/p/django-notification/',
- packages=[
- 'notification',
- 'notification.management',
- 'notification.management.commands',
- ],
- package_dir={'notification': 'notification'},
+ packages=find_packages(),
classifiers=[
'Development Status :: 3 - Alpha',
'Environment :: Web Environment',
@@ -22,5 +17,7 @@
'Operating System :: OS Independent',
'Programming Language :: Python',
'Framework :: Django',
- ]
+ ],
+ include_package_data=True,
+ zip_safe=False,
)
--~--~---------~--~----~------------~-------~--~----~
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
-~----------~----~----~----~------~----~------~--~---