[Checkins] SVN: grok/branches/philikon-grokcore.component/grokcore.grok/ We need a grokking facility on neutral grounds (incl. the ZCML support).

Philipp von Weitershausen philikon at philikon.de
Sat Aug 25 07:58:13 EDT 2007


Log message for revision 79252:
  We need a grokking facility on neutral grounds (incl. the ZCML support).
  That's because other packages besides 'grok' itself need to be able to call
  grok.grok().  And these packages can't depend on 'grok' because 'grok' depends
  on them.
  
  If anybody can find a better package name than grokcore.grok, I'll be happy
  to consider it :)
  

Changed:
  A   grok/branches/philikon-grokcore.component/grokcore.grok/
  A   grok/branches/philikon-grokcore.component/grokcore.grok/README.txt
  A   grok/branches/philikon-grokcore.component/grokcore.grok/grokcore/
  A   grok/branches/philikon-grokcore.component/grokcore.grok/grokcore/__init__.py
  A   grok/branches/philikon-grokcore.component/grokcore.grok/grokcore/grok/
  A   grok/branches/philikon-grokcore.component/grokcore.grok/setup.py

-=-
Added: grok/branches/philikon-grokcore.component/grokcore.grok/README.txt
===================================================================
--- grok/branches/philikon-grokcore.component/grokcore.grok/README.txt	                        (rev 0)
+++ grok/branches/philikon-grokcore.component/grokcore.grok/README.txt	2007-08-25 11:58:13 UTC (rev 79252)
@@ -0,0 +1,2 @@
+WRITE ME
+


Property changes on: grok/branches/philikon-grokcore.component/grokcore.grok/README.txt
___________________________________________________________________
Name: svn:eol-style
   + native

Added: grok/branches/philikon-grokcore.component/grokcore.grok/grokcore/__init__.py
===================================================================
--- grok/branches/philikon-grokcore.component/grokcore.grok/grokcore/__init__.py	                        (rev 0)
+++ grok/branches/philikon-grokcore.component/grokcore.grok/grokcore/__init__.py	2007-08-25 11:58:13 UTC (rev 79252)
@@ -0,0 +1,7 @@
+# this is a namespace package
+try:
+    import pkg_resources
+    pkg_resources.declare_namespace(__name__)
+except ImportError:
+    import pkgutil
+    __path__ = pkgutil.extend_path(__path__, __name__)


Property changes on: grok/branches/philikon-grokcore.component/grokcore.grok/grokcore/__init__.py
___________________________________________________________________
Name: svn:eol-style
   + native

Added: grok/branches/philikon-grokcore.component/grokcore.grok/setup.py
===================================================================
--- grok/branches/philikon-grokcore.component/grokcore.grok/setup.py	                        (rev 0)
+++ grok/branches/philikon-grokcore.component/grokcore.grok/setup.py	2007-08-25 11:58:13 UTC (rev 79252)
@@ -0,0 +1,36 @@
+##############################################################################
+#
+# 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 grokcore.grok package
+"""
+from setuptools import setup, find_packages
+
+setup(
+    name='grokcore.grok',
+    version='0.1',
+    author='Grok Team',
+    author_email='grok-dev at zope.org',
+    url='http://grok.zope.org',
+    download_url='http://cheeseshop.python.org/pypi/grokcore.grok/',
+    description='Facilities for grokking from Python and ZCML',
+    long_description=open('README.txt').read(),
+    license='ZPL',
+    packages=find_packages(),
+    namespace_packages=['grokcore'],
+    include_package_data = True,
+    zip_safe=False,
+    install_requires=['setuptools',
+                      'martian',
+                      'zope.configuration',
+                      ],
+)


Property changes on: grok/branches/philikon-grokcore.component/grokcore.grok/setup.py
___________________________________________________________________
Name: svn:eol-style
   + native



More information about the Checkins mailing list