[Checkins] SVN: z3c.sampledata/trunk/ Get ready for release.

Stephan Richter srichter at cosmos.phy.tufts.edu
Thu Feb 14 02:26:08 EST 2008


Log message for revision 83815:
  Get ready for release.
  

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

-=-
Added: z3c.sampledata/trunk/CHANGES.txt
===================================================================
--- z3c.sampledata/trunk/CHANGES.txt	                        (rev 0)
+++ z3c.sampledata/trunk/CHANGES.txt	2008-02-14 07:26:08 UTC (rev 83815)
@@ -0,0 +1,8 @@
+=======
+CHANGES
+=======
+
+0.1.0 (2008-02-14)
+------------------
+
+- Initial Release


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

Modified: z3c.sampledata/trunk/buildout.cfg
===================================================================
--- z3c.sampledata/trunk/buildout.cfg	2008-02-14 05:14:16 UTC (rev 83814)
+++ z3c.sampledata/trunk/buildout.cfg	2008-02-14 07:26:08 UTC (rev 83815)
@@ -2,8 +2,6 @@
 develop = .
 parts = test
 
-find-links = http://download.zope.org/distribution/
-
 [test]
 recipe = zc.recipe.testrunner
 eggs = z3c.sampledata [test]

Deleted: z3c.sampledata/trunk/setup.cfg
===================================================================
--- z3c.sampledata/trunk/setup.cfg	2008-02-14 05:14:16 UTC (rev 83814)
+++ z3c.sampledata/trunk/setup.cfg	2008-02-14 07:26:08 UTC (rev 83815)
@@ -1,3 +0,0 @@
-[egg_info]
-tag_build = .dev
-tag_svn_revision = 1

Modified: z3c.sampledata/trunk/setup.py
===================================================================
--- z3c.sampledata/trunk/setup.py	2008-02-14 05:14:16 UTC (rev 83814)
+++ z3c.sampledata/trunk/setup.py	2008-02-14 07:26:08 UTC (rev 83815)
@@ -1,22 +1,64 @@
-#!python
+##############################################################################
+#
+# Copyright (c) 2007 Zope Foundation 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
+
+$Id:$
+"""
+import os
 from setuptools import setup, find_packages
 
-setup(
-    name = 'z3c.sampledata',
-    version = '0.1.0',
-    author = "Zope Community",
-    author_email = "zope3-dev at zope.org",
-    description = open("README.txt").read(),
+def read(*rnames):
+    return open(os.path.join(os.path.dirname(__file__), *rnames)).read()
+
+setup (
+    name='z3c.sampledata',
+    version='0.1.0',
+    author = "Stephan Richter and the Zope Community",
+    author_email = "zope-dev at zope.org",
+    description = "Sampledata Generator",
+    long_description=(
+        read('README.txt')
+        + '\n\n' +
+        'Detailed Documentation\n'
+        '**********************'
+        + '\n\n' +
+        read('src', 'z3c', 'sampledata', 'README.txt')
+        + '\n\n' +
+        read('CHANGES.txt')
+        ),
     license = "ZPL 2.1",
-    keywords = "sampledata zope zope3",
-    url = 'http://svn.zope.org/z3c.sampledata',
-
-    zip_safe = False,
+    keywords = "zope3 z3c sampledata",
+    classifiers = [
+        'Development Status :: 4 - Beta',
+        '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://pypi.python.org/pypi/z3c.sampledata',
     packages = find_packages('src'),
     include_package_data = True,
     package_dir = {'':'src'},
-    namespace_packages = ['z3c',],
-    
+    namespace_packages = ['z3c'],
+    extras_require = dict(
+        test = [
+            'zope.app.testing',
+            ],
+        ),
     install_requires = [
         'setuptools',
         'zope.interface',
@@ -24,9 +66,8 @@
         'zope.schema',
         'ZODB3',
         'zope.app.container',
+        'zope.app.intid',
         'zope.i18nmessageid'
         ],
-    extras_require = dict(
-        test = ['zope.app.testing'],
-        ),
-    )
+    zip_safe = False,
+)

Modified: z3c.sampledata/trunk/src/z3c/sampledata/README.txt
===================================================================
--- z3c.sampledata/trunk/src/z3c/sampledata/README.txt	2008-02-14 05:14:16 UTC (rev 83814)
+++ z3c.sampledata/trunk/src/z3c/sampledata/README.txt	2008-02-14 07:26:08 UTC (rev 83815)
@@ -284,7 +284,7 @@
 
 
 Data Sources
-============
+------------
 
 This package implements the base functionality for data generators.
 A data generator is used to provide the raw data for a sample generator.



More information about the Checkins mailing list