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

Stephan Richter srichter at cosmos.phy.tufts.edu
Thu Oct 11 03:36:47 EDT 2007


Log message for revision 80842:
  Update meta-data.
  

Changed:
  A   zope.app.content/trunk/CHANGES.txt
  A   zope.app.content/trunk/README.txt
  U   zope.app.content/trunk/buildout.cfg
  D   zope.app.content/trunk/setup.cfg
  U   zope.app.content/trunk/setup.py

-=-
Added: zope.app.content/trunk/CHANGES.txt
===================================================================
--- zope.app.content/trunk/CHANGES.txt	                        (rev 0)
+++ zope.app.content/trunk/CHANGES.txt	2007-10-11 07:36:47 UTC (rev 80842)
@@ -0,0 +1,8 @@
+=======
+CHANGES
+=======
+
+3.4.0 (2007-10-11)
+------------------
+
+- Initial release independent of the main Zope tree.


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

Added: zope.app.content/trunk/README.txt
===================================================================
--- zope.app.content/trunk/README.txt	                        (rev 0)
+++ zope.app.content/trunk/README.txt	2007-10-11 07:36:47 UTC (rev 80842)
@@ -0,0 +1,2 @@
+This package defines an ``IInterface`` that allows the developer to mark
+interfaces as content types.


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

Modified: zope.app.content/trunk/buildout.cfg
===================================================================
--- zope.app.content/trunk/buildout.cfg	2007-10-11 07:26:39 UTC (rev 80841)
+++ zope.app.content/trunk/buildout.cfg	2007-10-11 07:36:47 UTC (rev 80842)
@@ -1,7 +1,6 @@
 [buildout]
-develop = . 
+develop = .
 parts = test
-find-links = http://download.zope.org/distribution/
 
 [test]
 recipe = zc.recipe.testrunner

Deleted: zope.app.content/trunk/setup.cfg
===================================================================
--- zope.app.content/trunk/setup.cfg	2007-10-11 07:26:39 UTC (rev 80841)
+++ zope.app.content/trunk/setup.cfg	2007-10-11 07:36:47 UTC (rev 80842)
@@ -1,2 +0,0 @@
-[egg_info]
-tag_svn_revision = 1
\ No newline at end of file

Modified: zope.app.content/trunk/setup.py
===================================================================
--- zope.app.content/trunk/setup.py	2007-10-11 07:26:39 UTC (rev 80841)
+++ zope.app.content/trunk/setup.py	2007-10-11 07:36:47 UTC (rev 80842)
@@ -15,18 +15,35 @@
 
 $Id$
 """
-
 import os
+from setuptools import setup, find_packages
 
-from setuptools import setup, find_packages, Extension
+def read(*rnames):
+    return open(os.path.join(os.path.dirname(__file__), *rnames)).read()
 
 setup(name='zope.app.content',
-      version = '3.4.0b1',
-      url='http://svn.zope.org/zope.app.content',
-      license='ZPL 2.1',
-      description='Zope content',
+      version = '3.4.0',
       author='Zope Corporation and Contributors',
       author_email='zope3-dev at zope.org',
+      description='Zope Content Type',
+      long_description=(
+          read('README.txt')
+          + '\n\n' +
+          read('CHANGES.txt')
+          ),
+      keywords = "zope3 content type",
+      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.content',
+      license='ZPL 2.1',
       packages=find_packages('src'),
       package_dir = {'': 'src'},
       namespace_packages=['zope', 'zope.app'],



More information about the Checkins mailing list