[Checkins] SVN: z3c.zrtresource/trunk/ Get ready for first public release.

Stephan Richter srichter at cosmos.phy.tufts.edu
Tue Oct 30 17:24:08 EDT 2007


Log message for revision 81239:
  Get ready for first public release.
  

Changed:
  A   z3c.zrtresource/trunk/CHANGES.txt
  U   z3c.zrtresource/trunk/buildout.cfg
  D   z3c.zrtresource/trunk/setup.cfg
  U   z3c.zrtresource/trunk/setup.py
  _U  z3c.zrtresource/trunk/src/

-=-
Added: z3c.zrtresource/trunk/CHANGES.txt
===================================================================
--- z3c.zrtresource/trunk/CHANGES.txt	                        (rev 0)
+++ z3c.zrtresource/trunk/CHANGES.txt	2007-10-30 21:24:07 UTC (rev 81239)
@@ -0,0 +1,8 @@
+=======
+CHANGES
+=======
+
+1.0.0 (2007-10-30)
+------------------
+
+- Initial release.


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

Modified: z3c.zrtresource/trunk/buildout.cfg
===================================================================
--- z3c.zrtresource/trunk/buildout.cfg	2007-10-30 21:08:16 UTC (rev 81238)
+++ z3c.zrtresource/trunk/buildout.cfg	2007-10-30 21:24:07 UTC (rev 81239)
@@ -1,5 +1,5 @@
 [buildout]
-develop = . 
+develop = .
 parts = test
 
 [test]

Deleted: z3c.zrtresource/trunk/setup.cfg
===================================================================
--- z3c.zrtresource/trunk/setup.cfg	2007-10-30 21:08:16 UTC (rev 81238)
+++ z3c.zrtresource/trunk/setup.cfg	2007-10-30 21:24:07 UTC (rev 81239)
@@ -1,2 +0,0 @@
-[egg_info]
-tag_svn_revision = 1

Modified: z3c.zrtresource/trunk/setup.py
===================================================================
--- z3c.zrtresource/trunk/setup.py	2007-10-30 21:08:16 UTC (rev 81238)
+++ z3c.zrtresource/trunk/setup.py	2007-10-30 21:24:07 UTC (rev 81239)
@@ -1,14 +1,59 @@
-#!python
+##############################################################################
+#
+# 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 z3c.zrtresource package
+
+$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='z3c.zrtresource',
-      version='0.1.1',
-      author = "Zope Community",
-      author_email = "zope3-dev at zope.org",
-      description = open("README.txt").read(),
-      license = "ZPL 2.1",
-      keywords = "css resource zope zope3",
-      url='http://svn.zope.org/z3c.zrtresource',
+      version = '1.0.0',
+      author='Zope Corporation and Contributors',
+      author_email='zope3-dev at zope.org',
+      description='Zope Resource Templates',
+      long_description=(
+          read('README.txt')
+          + '\n\n' +
+          'Detailed Dcoumentation\n' +
+          '======================\n'
+          + '\n\n' +
+          read('src', 'z3c', 'zrtresource', 'README.txt')
+          + '\n\n' +
+          read('src', 'z3c', 'zrtresource', 'zcml.txt')
+          + '\n\n' +
+          read('CHANGES.txt')
+          ),
+      keywords = "zope3 css javascript resource zope",
+      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/z3c.zrtresource',
+      license='ZPL 2.1',
+      packages=find_packages('src'),
+      package_dir = {'': 'src'},
+      namespace_packages=['z3c'],
       extras_require = dict(test=['zope.app.testing',
                                   'zope.testing',
                                   'zope.traversing',
@@ -24,10 +69,6 @@
                           'zope.schema',
                           'zope.security',
                           ],
-      zip_safe=False,
-      packages=find_packages('src'),
-      include_package_data=True,
-      package_dir = {'':'src'},
-      namespace_packages=['z3c',],
-     )
-
+      include_package_data = True,
+      zip_safe = False,
+      )


Property changes on: z3c.zrtresource/trunk/src
___________________________________________________________________
Name: svn:ignore
   + z3c.zrtresource.egg-info




More information about the Checkins mailing list