Author: leidel
Date: Sat Jan 24 13:18:45 2009
New Revision: 58
Added:
trunk/setup.py
Log:
Added simple setup.py
Added: trunk/setup.py
==============================================================================
--- (empty file)
+++ trunk/setup.py Sat Jan 24 13:18:45 2009
@@ -0,0 +1,23 @@
+from setuptools import setup, find_packages
+
+setup(
+ name='django-friends',
+ version='0.1.0',
+ description='friendship, contact and invitation management for the
Django web framework',
+ author='James Tauber',
+ author_email='[email protected]',
+ url='http://code.google.com/p/django-friends/',
+ packages=find_packages(),
+ 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',
+ ],
+ include_package_data=True,
+ zip_safe=False,
+ install_requires=['setuptools'],
+)
--~--~---------~--~----~------------~-------~--~----~
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
-~----------~----~----~----~------~----~------~--~---