[Checkins] SVN: zope.server/branches/3.4/setup.py Update metada

Christophe Combelles ccomb at free.fr
Thu Aug 14 18:22:41 EDT 2008


Log message for revision 89845:
  Update metada
  

Changed:
  U   zope.server/branches/3.4/setup.py

-=-
Modified: zope.server/branches/3.4/setup.py
===================================================================
--- zope.server/branches/3.4/setup.py	2008-08-14 21:28:39 UTC (rev 89844)
+++ zope.server/branches/3.4/setup.py	2008-08-14 22:22:41 UTC (rev 89845)
@@ -17,20 +17,34 @@
 """
 
 import os
-
 from setuptools import setup, find_packages
 
+def read(*rnames):
+    return open(os.path.join(os.path.dirname(__file__), *rnames)).read()
+
 setup(name='zope.server',
       version = '3.4.3dev',
-      url='http://svn.zope.org/zope.server',
       license='ZPL 2.1',
-      description='Zope server',
+      description='Zope server (Web and FTP)',
       author='Zope Corporation and Contributors',
-      author_email='zope3-dev at zope.org',
-      long_description="This package contains generic base classes for"
-                       "channel-based servers, the servers themselves and"
-                       "helper objects, such as tasks and requests.",
-
+      author_email='zope-dev at zope.org',
+       long_description=(
+        read('README.txt')
+        + '\n\n' +
+        read('CHANGES.txt')
+        ),
+      keywords=('zope3 server http ftp'),
+      classifiers = [
+          'Development Status :: 5 - Production/Stable',
+          'Environment :: Web Environment',
+          'Intended Audience :: Developers',
+          'License :: OSI Approved :: Zope Public License',
+          'Programming Language :: Python',
+          'Natural Language :: English',
+          'Operating System :: OS Independent',
+          'Topic :: Internet :: WWW/HTTP',
+          'Framework :: Zope3'],
+      url='http://cheeseshop.python.org/pypi/zope.server',
       packages=find_packages('src'),
       package_dir = {'': 'src'},
 



More information about the Checkins mailing list