Author: leidel
Date: Wed Dec 24 05:57:33 2008
New Revision: 123
Added:
trunk/MANIFEST.in
trunk/setup.py
Modified:
trunk/notification/__init__.py
Log:
Added setup.py and necessary files.
Added: trunk/MANIFEST.in
==============================================================================
--- (empty file)
+++ trunk/MANIFEST.in Wed Dec 24 05:57:33 2008
@@ -0,0 +1,3 @@
+include AUTHORS
+recursive-include docs *
+recursive-include notification/templates/notification *
Modified: trunk/notification/__init__.py
==============================================================================
--- trunk/notification/__init__.py (original)
+++ trunk/notification/__init__.py Wed Dec 24 05:57:33 2008
@@ -0,0 +1,2 @@
+VERSION = (0, 1, 'pre')
+__version__ = '.'.join(map(str, VERSION))
\ No newline at end of file
Added: trunk/setup.py
==============================================================================
--- (empty file)
+++ trunk/setup.py Wed Dec 24 05:57:33 2008
@@ -0,0 +1,27 @@
+from distutils.core import setup
+
+setup(
+ name='django-notification',
+ version=__import__('notification').__version__,
+ description='Many sites need to notify users when certain events have
occurred and to allow configurable options as to how those notifications
are to be received. The project aims to provide a Django app for this sort
of functionality.',
+ long_description=open('docs/index.txt').read(),
+ author='James Tauber',
+ author_email='[email protected]',
+ url='http://code.google.com/p/django-notification/',
+ packages=[
+ 'notification',
+ 'notification.management',
+ 'notification.management.commands',
+ 'notification.templatetags',
+ ],
+ package_dir={'notification': 'notification'},
+ classifiers=[
+ 'Development Status :: 3 - Alpha',
+ 'Environment :: Web Environment',
+ 'Intended Audience :: Developers',
+ 'License :: OSI Approved :: MIT License',
+ 'Operating System :: OS Independent',
+ 'Programming Language :: Python',
+ 'Framework :: Django',
+ ]
+)
--~--~---------~--~----~------------~-------~--~----~
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
-~----------~----~----~----~------~----~------~--~---