Author: jtauber
Date: Wed Jan 28 18:51:26 2009
New Revision: 38
Added:
trunk/AUTHORS
trunk/LICENSE
trunk/MANIFEST.in
trunk/README
trunk/setup.py
Log:
my attempt at making distutils-ready
Added: trunk/AUTHORS
==============================================================================
--- (empty file)
+++ trunk/AUTHORS Wed Jan 28 18:51:26 2009
@@ -0,0 +1,11 @@
+
+The PRIMARY AUTHORS are:
+
+ * James Tauber
+
+ADDITIONAL CONTRIBUTORS include:
+
+ * Michael Trier
+ * Gil Klein
+ * Jannis Leidel
+
Added: trunk/LICENSE
==============================================================================
--- (empty file)
+++ trunk/LICENSE Wed Jan 28 18:51:26 2009
@@ -0,0 +1,22 @@
+Copyright (c) 2008 James Tauber and contributors
+
+Permission is hereby granted, free of charge, to any person
+obtaining a copy of this software and associated documentation
+files (the "Software"), to deal in the Software without
+restriction, including without limitation the rights to use,
+copy, modify, merge, publish, distribute, sublicense, and/or sell
+copies of the Software, and to permit persons to whom the
+Software is furnished to do so, subject to the following
+conditions:
+
+The above copyright notice and this permission notice shall be
+included in all copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
+EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
+OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
+NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
+HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
+WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
+FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
+OTHER DEALINGS IN THE SOFTWARE.
\ No newline at end of file
Added: trunk/MANIFEST.in
==============================================================================
--- (empty file)
+++ trunk/MANIFEST.in Wed Jan 28 18:51:26 2009
@@ -0,0 +1,2 @@
+include AUTHORS
+include LICENSE
Added: trunk/README
==============================================================================
--- (empty file)
+++ trunk/README Wed Jan 28 18:51:26 2009
@@ -0,0 +1,4 @@
+
+A reusable app for bookmark management.
+
+Based on work done for Pinax.
\ No newline at end of file
Added: trunk/setup.py
==============================================================================
--- (empty file)
+++ trunk/setup.py Wed Jan 28 18:51:26 2009
@@ -0,0 +1,23 @@
+from distutils.core import setup
+
+setup(
+ name='django-bookmarks',
+ version=__import__('bookmarks').__version__,
+ description='A reusable Django app for bookmark management.',
+ author='James Tauber',
+ author_email='[email protected]',
+ url='http://code.google.com/p/django-bookmarks/',
+ packages=[
+ 'bookmarks',
+ ],
+ package_dir={'bookmarks': 'bookmarks'},
+ 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
-~----------~----~----~----~------~----~------~--~---