[Checkins] SVN: keas.unit/trunk/ Get ready for release.

Stephan Richter srichter at gmail.com
Sun Jul 26 22:17:04 EDT 2009


Log message for revision 102318:
  Get ready for release.
  

Changed:
  _U  keas.unit/trunk/
  A   keas.unit/trunk/CHANGES.txt
  U   keas.unit/trunk/setup.py
  _U  keas.unit/trunk/src/

-=-

Property changes on: keas.unit/trunk
___________________________________________________________________
Added: svn:ignore
   + .installed.cfg
bin
develop-eggs
dist
parts


Added: keas.unit/trunk/CHANGES.txt
===================================================================
--- keas.unit/trunk/CHANGES.txt	                        (rev 0)
+++ keas.unit/trunk/CHANGES.txt	2009-07-27 02:17:03 UTC (rev 102318)
@@ -0,0 +1,8 @@
+=======
+CHANGES
+=======
+
+1.0.0 (2009-07-26)
+------------------
+
+- Initial release.


Property changes on: keas.unit/trunk/CHANGES.txt
___________________________________________________________________
Added: svn:eol-style
   + native

Modified: keas.unit/trunk/setup.py
===================================================================
--- keas.unit/trunk/setup.py	2009-07-27 02:05:58 UTC (rev 102317)
+++ keas.unit/trunk/setup.py	2009-07-27 02:17:03 UTC (rev 102318)
@@ -1,3 +1,19 @@
+##############################################################################
+#
+# Copyright (c) 2008 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.
+#
+##############################################################################
+"""
+$Id$
+"""
 import os
 from setuptools import setup, find_packages
 
@@ -4,21 +20,43 @@
 def read(*rnames):
     return open(os.path.join(os.path.dirname(__file__), *rnames)).read()
 
-setup(
+setup (
     name='keas.unit',
-    version = '0.1.0-dev',
-    author='Keas Inc.',
-    description="A simple wrapper around the 'units' shell command",
-    packages=find_packages('src'),
-    package_dir = {'': 'src'},
-    extras_require=dict(
-        test=['zope.testing'],
+    version='1.0.0',
+    author = "Stephan Richter and the Zope Community",
+    author_email = "zope-dev at zope.org",
+    description = "A simple wrapper around the 'units' shell command",
+    long_description=(
+        read('src', 'keas', 'unit', 'README.txt')
+        + '\n\n' +
+        read('CHANGES.txt')
         ),
-    install_requires=[
+    license = "ZPL 2.1",
+    keywords = "zope3 security key management infrastructure nist 800-57",
+    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/keas.unit',
+    packages = find_packages('src'),
+    include_package_data = True,
+    package_dir = {'':'src'},
+    namespace_packages = ['keas'],
+    extras_require = dict(
+        test = [
+            'zope.testing',
+            ],
+        ),
+    install_requires = [
         'setuptools',
         'zope.interface',
-        'zope.schema'
+        'zope.schema',
         ],
-    include_package_data = True,
     zip_safe = False,
     )


Property changes on: keas.unit/trunk/src
___________________________________________________________________
Added: svn:ignore
   + keas.unit.egg-info




More information about the Checkins mailing list