[Checkins] SVN: five.localsitemanager/trunk/setup.py Updated setup.py for preparation of 0.1.1 release.

Rocky Burt rocky at serverzen.com
Mon Mar 5 07:55:14 EST 2007


Log message for revision 72984:
  Updated setup.py for preparation of 0.1.1 release.

Changed:
  U   five.localsitemanager/trunk/setup.py

-=-
Modified: five.localsitemanager/trunk/setup.py
===================================================================
--- five.localsitemanager/trunk/setup.py	2007-03-05 12:51:15 UTC (rev 72983)
+++ five.localsitemanager/trunk/setup.py	2007-03-05 12:55:13 UTC (rev 72984)
@@ -1,16 +1,3 @@
-##############################################################################
-#
-# Copyright (c) 2007 Zope Corporation and Contributors.
-# All Rights Reserved.
-#
-# This software is subject to the provisions of the Zope Public License,
-# Version 2.1 (ZPL).  A copy of the ZPL should accompany this distribution.
-# THIS SOFTWARE IS PROVIDED "AS IS" AND ANY AND ALL EXPRESS OR IMPLIED
-# WARRANTIES ARE DISCLAIMED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
-# WARRANTIES OF TITLE, MERCHANTABILITY, AGAINST INFRINGEMENT, AND FITNESS
-# FOR A PARTICULAR PURPOSE.
-#
-##############################################################################
 """Setup for five.localsitemanager package
 
 $Id$
@@ -18,15 +5,33 @@
 import os
 from setuptools import setup, Extension
 
+version = '0.1.1'
+
 setup(name='five.localsitemanager',
-      version='0.1',
+      version=version,
       url='http://svn.zope.org/five.localsitemanager',
       license='ZPL 2.1',
       description='Local site manager implementation for Zope 2',
-      author='Zope Corporation and Contributors',
+      author='Rocky Burt and Contributors',
       author_email='z3-five at codespeak.net',
-      long_description='',
-      
+      long_description="""\
+five.localsitemanager attempts to provide a local site manager implementation
+that is as close to Zope 3's implemenation as possible.  Some reservations
+that do not conflict with Zope 3 have been made to easy the path with CMF.
+""",
+
+      classifiers=[
+          'Environment :: Web Environment',
+          'Framework :: Zope2',
+          'Framework :: Zope3',
+          'License :: OSI Approved :: Zope Public License',
+          'Operating System :: OS Independent',
+          'Programming Language :: Python',
+          'Topic :: Internet :: WWW/HTTP :: Site Management',
+          'Topic :: Software Development :: Libraries :: Python Modules',
+      ],
+      keywords='zope zope2 zope3 five sitemanager',
+
       packages=['five', 'five.localsitemanager'],
       package_dir = {'': 'src'},
       namespace_packages=['five',],



More information about the Checkins mailing list