[Checkins] SVN: zope.dependencytool/trunk/ Get ready for release.

Stephan Richter srichter at cosmos.phy.tufts.edu
Fri Sep 21 16:20:11 EDT 2007


Log message for revision 79802:
  Get ready for release.
  

Changed:
  A   zope.dependencytool/trunk/AUTHOR.txt
  A   zope.dependencytool/trunk/CHANGES.txt
  A   zope.dependencytool/trunk/LICENSE.txt
  A   zope.dependencytool/trunk/README.txt
  A   zope.dependencytool/trunk/TODOS.txt
  U   zope.dependencytool/trunk/buildout.cfg
  U   zope.dependencytool/trunk/setup.py
  _U  zope.dependencytool/trunk/src/

-=-
Added: zope.dependencytool/trunk/AUTHOR.txt
===================================================================
--- zope.dependencytool/trunk/AUTHOR.txt	                        (rev 0)
+++ zope.dependencytool/trunk/AUTHOR.txt	2007-09-21 20:20:11 UTC (rev 79802)
@@ -0,0 +1 @@
+Zope Corporation and Contributors


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

Added: zope.dependencytool/trunk/CHANGES.txt
===================================================================
--- zope.dependencytool/trunk/CHANGES.txt	                        (rev 0)
+++ zope.dependencytool/trunk/CHANGES.txt	2007-09-21 20:20:11 UTC (rev 79802)
@@ -0,0 +1,8 @@
+=======
+CHANGES
+=======
+
+Version 3.4.0 (9/21/2007)
+-------------------------
+
+- Initial Release


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

Added: zope.dependencytool/trunk/LICENSE.txt
===================================================================
--- zope.dependencytool/trunk/LICENSE.txt	                        (rev 0)
+++ zope.dependencytool/trunk/LICENSE.txt	2007-09-21 20:20:11 UTC (rev 79802)
@@ -0,0 +1,54 @@
+Zope Public License (ZPL) Version 2.1
+-------------------------------------
+
+A copyright notice accompanies this license document that
+identifies the copyright holders.
+
+This license has been certified as open source. It has also
+been designated as GPL compatible by the Free Software
+Foundation (FSF).
+
+Redistribution and use in source and binary forms, with or
+without modification, are permitted provided that the
+following conditions are met:
+
+1. Redistributions in source code must retain the
+   accompanying copyright notice, this list of conditions,
+   and the following disclaimer.
+
+2. Redistributions in binary form must reproduce the accompanying
+   copyright notice, this list of conditions, and the
+   following disclaimer in the documentation and/or other
+   materials provided with the distribution.
+
+3. Names of the copyright holders must not be used to
+   endorse or promote products derived from this software
+   without prior written permission from the copyright
+   holders.
+
+4. The right to distribute this software or to use it for
+   any purpose does not give you the right to use
+   Servicemarks (sm) or Trademarks (tm) of the copyright
+   holders. Use of them is covered by separate agreement
+   with the copyright holders.
+
+5. If any files are modified, you must cause the modified
+   files to carry prominent notices stating that you changed
+   the files and the date of any change.
+
+Disclaimer
+
+  THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS ``AS IS''
+  AND ANY EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT
+  NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY
+  AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.  IN
+  NO EVENT SHALL THE COPYRIGHT HOLDERS BE
+  LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
+  EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
+  LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
+  LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
+  HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
+  CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE
+  OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
+  SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH
+  DAMAGE.


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

Added: zope.dependencytool/trunk/README.txt
===================================================================
--- zope.dependencytool/trunk/README.txt	                        (rev 0)
+++ zope.dependencytool/trunk/README.txt	2007-09-21 20:20:11 UTC (rev 79802)
@@ -0,0 +1,3 @@
+This package installs a script that allows a developer to discover the used
+packages of a given package. This is useful when creating a list of
+dependencies for ``setup.py``.


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

Added: zope.dependencytool/trunk/TODOS.txt
===================================================================
--- zope.dependencytool/trunk/TODOS.txt	                        (rev 0)
+++ zope.dependencytool/trunk/TODOS.txt	2007-09-21 20:20:11 UTC (rev 79802)
@@ -0,0 +1,5 @@
+=====
+TODOS
+=====
+
+- Convert tests to doctests.


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

Modified: zope.dependencytool/trunk/buildout.cfg
===================================================================
--- zope.dependencytool/trunk/buildout.cfg	2007-09-21 18:50:49 UTC (rev 79801)
+++ zope.dependencytool/trunk/buildout.cfg	2007-09-21 20:20:11 UTC (rev 79802)
@@ -1,7 +1,11 @@
 [buildout]
-parts = test
+parts = test finddeps
 develop = .
 
 [test]
 recipe = zc.recipe.testrunner
 eggs = zope.dependencytool
+
+[finddeps]
+recipe = zc.recipe.egg
+eggs = zope.dependencytool

Modified: zope.dependencytool/trunk/setup.py
===================================================================
--- zope.dependencytool/trunk/setup.py	2007-09-21 18:50:49 UTC (rev 79801)
+++ zope.dependencytool/trunk/setup.py	2007-09-21 20:20:11 UTC (rev 79802)
@@ -1,6 +1,6 @@
 ##############################################################################
 #
-# Copyright (c) 2007 Zope Corporation and Contributors.
+# Copyright (c) 2007 Zope Foundation and Contributors.
 # All Rights Reserved.
 #
 # This software is subject to the provisions of the Zope Public License,
@@ -11,31 +11,49 @@
 # FOR A PARTICULAR PURPOSE.
 #
 ##############################################################################
-"""Setup for zope.dependencytool package
+"""Setup
 
-$Id: setup.py 72841 2007-02-26 22:25:58Z ctheune $
+$Id: setup.py 77083 2007-06-25 22:56:42Z srichter $
 """
-
 import os
-
 from setuptools import setup, find_packages
 
-setup(name='zope.dependencytool',
-      version='3.4.0b1',
-      url='http://svn.zope.org/zope.dependencytool',
-      license='ZPL 2.1',
-      description='Zope dependencytool',
-      author='Zope Corporation and Contributors',
-      author_email='zope3-dev at zope.org',
-      long_description="Find dependencies of a package or module.",
+def read(*rnames):
+    return open(os.path.join(os.path.dirname(__file__), *rnames)).read()
 
-      packages=find_packages('src'),
-      package_dir = {'': 'src'},
-
-      namespace_packages=['zope',],
-      tests_require = ['zope.testing'],
-      install_requires=[],
-      include_package_data = True,
-
-      zip_safe = False,
-      )
+setup (
+    name='zope.dependencytool',
+    version='3.4.0',
+    author='Zope Corporation and Contributors',
+    author_email='zope3-dev at zope.org',
+    description='Package-Dependency Discovery Tool',
+    long_description=(
+        read('README.txt')
+        + '\n\n' +
+        read('CHANGES.txt')
+        ),
+    license = "ZPL 2.1",
+    keywords = "package dependency discovery",
+    classifiers = [
+        'Development Status :: 5 - Stable/Production',
+        'Intended Audience :: Developers',
+        'License :: OSI Approved :: Zope Public License',
+        'Programming Language :: Python',
+        'Natural Language :: English',
+        'Operating System :: OS Independent'],
+    url = 'http://cheeseshop.python.org/pypi/zope.dependencytool',
+    packages = find_packages('src'),
+    include_package_data = True,
+    package_dir = {'':'src'},
+    namespace_packages = ['zope'],
+    extras_require = dict(
+        test = ['zope.testing'],
+        ),
+    install_requires = [
+        'setuptools'],
+    entry_points = """
+        [console_scripts]
+        finddeps = zope.dependencytool.finddeps:main
+        """,
+    zip_safe = False,
+    )


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




More information about the Checkins mailing list