[Checkins] SVN: zope.filerepresentation/trunk/ Got rid of nasty ``zope.app`` package dependence that does not exist

Stephan Richter srichter at cosmos.phy.tufts.edu
Tue Oct 2 09:08:38 EDT 2007


Log message for revision 80483:
  Got rid of nasty ``zope.app`` package dependence that does not exist 
  anymore. Yipee!
  
  Getting ready for 3.4.0 release.
  
  

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

-=-
Added: zope.filerepresentation/trunk/CHANGES.txt
===================================================================
--- zope.filerepresentation/trunk/CHANGES.txt	                        (rev 0)
+++ zope.filerepresentation/trunk/CHANGES.txt	2007-10-02 13:08:38 UTC (rev 80483)
@@ -0,0 +1,8 @@
+=======
+CHANGES
+=======
+
+3.4.0 (2007-10-02)
+------------------
+
+- Initial Zope-independent release.


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

Modified: zope.filerepresentation/trunk/README.txt
===================================================================
--- zope.filerepresentation/trunk/README.txt	2007-10-02 13:02:50 UTC (rev 80482)
+++ zope.filerepresentation/trunk/README.txt	2007-10-02 13:08:38 UTC (rev 80483)
@@ -1,5 +1,6 @@
-zope.filerepresentation Package Readme
-======================================
+==============================
+File Representation Interfaces
+==============================
 
 Overview
 --------

Modified: zope.filerepresentation/trunk/buildout.cfg
===================================================================
--- zope.filerepresentation/trunk/buildout.cfg	2007-10-02 13:02:50 UTC (rev 80482)
+++ zope.filerepresentation/trunk/buildout.cfg	2007-10-02 13:08:38 UTC (rev 80483)
@@ -1,8 +1,12 @@
 [buildout]
-develop = . 
+develop = .
 parts = test
-find-links = http://download.zope.org/distribution/
+versions = versions
 
 [test]
 recipe = zc.recipe.testrunner
 eggs = zope.filerepresentation
+
+[versions]
+zope.traversing = 3.4.0
+zope.app.publisher = 3.4.0

Deleted: zope.filerepresentation/trunk/setup.cfg
===================================================================
--- zope.filerepresentation/trunk/setup.cfg	2007-10-02 13:02:50 UTC (rev 80482)
+++ zope.filerepresentation/trunk/setup.cfg	2007-10-02 13:08:38 UTC (rev 80483)
@@ -1,2 +0,0 @@
-[egg_info]
-tag_svn_revision = 1
\ No newline at end of file

Modified: zope.filerepresentation/trunk/setup.py
===================================================================
--- zope.filerepresentation/trunk/setup.py	2007-10-02 13:02:50 UTC (rev 80482)
+++ zope.filerepresentation/trunk/setup.py	2007-10-02 13:08:38 UTC (rev 80483)
@@ -15,31 +15,45 @@
 
 $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.filerepresentation',
-      version = '3.4.0b1',
-      url='http://svn.zope.org/zope.filerepresentation',
-      license='ZPL 2.1',
-      description='Zope filerepresentation',
+      version = '3.4.0',
       author='Zope Corporation and Contributors',
       author_email='zope3-dev at zope.org',
-      long_description="File-system representation interfaces."
-                       "The interfaces defined here are used for"
-                       "file-system and file-system-like"
-                       "representations of objects, such as"
-                        "file-system synchronization, FTP,"
-                        "PUT, and WebDAV.",
+      description='File-system Representation Interfaces',
+      long_description=(
+          read('README.txt')
+          + '\n\n' +
+          read('CHANGES.txt')
+          ),
+      keywords = "zope3 filesystem representation",
+      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.filerepresentation',
+      license='ZPL 2.1',
       packages=find_packages('src'),
       package_dir = {'': 'src'},
       namespace_packages=['zope'],
+      extras_require = dict(
+          test=['zope.testing',
+                ]),
       install_requires=['setuptools',
                         'zope.interface',
                         'zope.app.container'
                         ],
       include_package_data = True,
-      zip_safe = False,
+      zip_safe = True,
       )



More information about the Checkins mailing list