[Checkins] SVN: zmi.core/trunk/ Prepare distribution.

Yusei Tahara yusei at domen.cx
Sun Jun 7 11:33:15 EDT 2009


Log message for revision 100701:
  Prepare distribution.
  

Changed:
  A   zmi.core/trunk/CHANGES.txt
  U   zmi.core/trunk/README.txt
  A   zmi.core/trunk/TODO.txt
  A   zmi.core/trunk/buildout.cfg
  A   zmi.core/trunk/setup.py
  U   zmi.core/trunk/src/zmi/__init__.py

-=-
Added: zmi.core/trunk/CHANGES.txt
===================================================================
--- zmi.core/trunk/CHANGES.txt	                        (rev 0)
+++ zmi.core/trunk/CHANGES.txt	2009-06-07 15:33:14 UTC (rev 100701)
@@ -0,0 +1,10 @@
+=======
+CHANGES
+=======
+
+3.5.0 (unreleased)
+------------------
+
+- TBD
+
+


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

Modified: zmi.core/trunk/README.txt
===================================================================
--- zmi.core/trunk/README.txt	2009-06-07 15:32:31 UTC (rev 100700)
+++ zmi.core/trunk/README.txt	2009-06-07 15:33:14 UTC (rev 100701)
@@ -1,2 +1,6 @@
-This package provides ZMI and an application server functionalities
-which serve as a basis of ZMI.
+===========================
+Zope Management Interface
+===========================
+
+Zope Management Interface(ZMI) provides a standard web interface for
+Zope Toolkit and its application server.

Added: zmi.core/trunk/TODO.txt
===================================================================
--- zmi.core/trunk/TODO.txt	                        (rev 0)
+++ zmi.core/trunk/TODO.txt	2009-06-07 15:33:14 UTC (rev 100701)
@@ -0,0 +1,7 @@
+=====
+TODO
+=====
+
+- Move all ZMI codes in zope.app.
+
+- Fix dependencies of deprecated packages


Property changes on: zmi.core/trunk/TODO.txt
___________________________________________________________________
Added: svn:eol-style
   + native

Added: zmi.core/trunk/buildout.cfg
===================================================================
--- zmi.core/trunk/buildout.cfg	                        (rev 0)
+++ zmi.core/trunk/buildout.cfg	2009-06-07 15:33:14 UTC (rev 100701)
@@ -0,0 +1,8 @@
+[buildout]
+develop = .
+parts = test
+find-links = http://download.zope.org/distribution/
+
+[test]
+recipe = zc.recipe.testrunner
+eggs = zmi.core [test]

Added: zmi.core/trunk/setup.py
===================================================================
--- zmi.core/trunk/setup.py	                        (rev 0)
+++ zmi.core/trunk/setup.py	2009-06-07 15:33:14 UTC (rev 100701)
@@ -0,0 +1,71 @@
+##############################################################################
+#
+# Copyright (c) 2009 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.
+#
+##############################################################################
+
+import os
+from setuptools import setup, find_packages
+
+version = '3.5.0 dev'
+
+def read(*rnames):
+    return open(os.path.join(os.path.dirname(__file__), *rnames)).read()
+
+setup(name='zmi.core',
+      version=version,
+      author='Zope Corporation and Contributors',
+      author_email='zope-dev at zope.org',
+      description='Zope Management Interface',
+      long_description=(
+          read('README.txt')
+          + '\n\n' +
+          read('CHANGES.txt')
+          ),
+      keywords = "zope3 zmi",
+      classifiers = [
+          'Development Status :: 3 - Alpha',
+          '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/zmi.core',
+      license='ZPL 2.1',
+      packages=find_packages('src'),
+      package_dir = {'': 'src'},
+      namespace_packages=['zmi'],
+      install_requires=['setuptools',
+                        'zope.app.zcmlfiles',
+                        'zope.app.applicationcontrol',
+                        'zope.app.authentication',
+                        'zope.app.broken',
+                        'zope.app.component',
+                        'zope.app.container',
+                        'zope.app.error',
+                        'zope.app.exception',
+                        'zope.app.folder',
+                        'zope.app.i18n',
+                        'zope.app.intid',
+                        'zope.app.principalannotation',
+                        ],
+      extras_require=dict(test=['zope.app.testing',
+                                'zope.securitypolicy',
+                                'zope.testbrowser',
+                                'zope.app.zptpage',
+                                'zope.app.file',
+                                ]),
+      include_package_data = True,
+      zip_safe = False,
+      )

Modified: zmi.core/trunk/src/zmi/__init__.py
===================================================================
--- zmi.core/trunk/src/zmi/__init__.py	2009-06-07 15:32:31 UTC (rev 100700)
+++ zmi.core/trunk/src/zmi/__init__.py	2009-06-07 15:33:14 UTC (rev 100701)
@@ -0,0 +1 @@
+__import__('pkg_resources').declare_namespace(__name__)



More information about the Checkins mailing list