[Checkins] SVN: zope.app.onlinehelp/trunk/ Update meta-data.

Stephan Richter srichter at cosmos.phy.tufts.edu
Thu Oct 25 12:25:23 EDT 2007


Log message for revision 81107:
  Update meta-data.
  

Changed:
  A   zope.app.onlinehelp/trunk/CHANGES.txt
  U   zope.app.onlinehelp/trunk/README.txt
  U   zope.app.onlinehelp/trunk/buildout.cfg
  U   zope.app.onlinehelp/trunk/setup.py
  _U  zope.app.onlinehelp/trunk/src/

-=-
Added: zope.app.onlinehelp/trunk/CHANGES.txt
===================================================================
--- zope.app.onlinehelp/trunk/CHANGES.txt	                        (rev 0)
+++ zope.app.onlinehelp/trunk/CHANGES.txt	2007-10-25 16:25:23 UTC (rev 81107)
@@ -0,0 +1,13 @@
+=======
+CHANGES
+=======
+
+3.4.1 (2007-10-25)
+------------------
+
+- Package meta-data update.
+
+3.4.0 (2007-10-23)
+------------------
+
+- Initial release independent of the main Zope tree.


Property changes on: zope.app.onlinehelp/trunk/CHANGES.txt
___________________________________________________________________
Name: svn:eol-style
   + native

Modified: zope.app.onlinehelp/trunk/README.txt
===================================================================
--- zope.app.onlinehelp/trunk/README.txt	2007-10-25 16:12:25 UTC (rev 81106)
+++ zope.app.onlinehelp/trunk/README.txt	2007-10-25 16:25:23 UTC (rev 81107)
@@ -1,4 +1,3 @@
-zope.app.onlinehelp
-===================
-
-See, src/zope/app/onlinehelp/README.txt 
+This package provides a framework for creating help pages for Zope 3
+applications. ZCML directives are used to minimize the overhead of creating
+new help pages.

Modified: zope.app.onlinehelp/trunk/buildout.cfg
===================================================================
--- zope.app.onlinehelp/trunk/buildout.cfg	2007-10-25 16:12:25 UTC (rev 81106)
+++ zope.app.onlinehelp/trunk/buildout.cfg	2007-10-25 16:25:23 UTC (rev 81107)
@@ -1,7 +1,6 @@
 [buildout]
 develop = .
 parts = test
-find-links = http://download.zope.org/distribution/
 
 [test]
 recipe = zc.recipe.testrunner

Modified: zope.app.onlinehelp/trunk/setup.py
===================================================================
--- zope.app.onlinehelp/trunk/setup.py	2007-10-25 16:12:25 UTC (rev 81106)
+++ zope.app.onlinehelp/trunk/setup.py	2007-10-25 16:25:23 UTC (rev 81107)
@@ -15,24 +15,38 @@
 
 $Id$
 """
-
 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.app.onlinehelp',
       version = '3.4.1',
-      url = 'http://svn.zope.org/zope.app.onlinehelp',
-      license = 'ZPL 2.1',
-      description = 'Zope app.onlinehelp',
-      author = 'Zope Corporation and Contributors',
-      author_email = 'zope3-dev at zope.org',
-      long_description = "",
-
-      packages = find_packages('src'),
+      author='Zope Corporation and Contributors',
+      author_email='zope3-dev at zope.org',
+      description='Framework for Context-Sensitive Help Pages',
+      long_description=(
+          read('README.txt')
+          + '\n\n' +
+          read('CHANGES.txt')
+          ),
+      keywords = "zope3 online help",
+      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.app.onlinehelp',
+      license='ZPL 2.1',
+      packages=find_packages('src'),
       package_dir = {'': 'src'},
-
-      namespace_packages = ['zope', 'zope.app'],
+      namespace_packages=['zope', 'zope.app'],
       install_requires = ['setuptools',
                           'ZODB3',
                           'zope.app.component',
@@ -63,6 +77,5 @@
                                   'zope.app.zcmlfiles',
                                   'zope.securitypolicy']),
       include_package_data = True,
-
       zip_safe = False,
       )


Property changes on: zope.app.onlinehelp/trunk/src
___________________________________________________________________
Name: svn:ignore
   + zope.app.onlinehelp.egg-info




More information about the Checkins mailing list