[Checkins] SVN: zope.component/trunk/ - Added all dependencies

Baiju M baiju.m.mail at gmail.com
Thu Jan 18 23:40:04 EST 2007


Log message for revision 72099:
   - Added all dependencies
   - TODO item to remove direct dependency on zope.testing
   - svn property changes
  

Changed:
  _U  zope.component/trunk/MANIFEST.in
  A   zope.component/trunk/TODO.txt
  _U  zope.component/trunk/develop.py
  UU  zope.component/trunk/setup.py
  UU  zope.component/trunk/test.py

-=-

Property changes on: zope.component/trunk/MANIFEST.in
___________________________________________________________________
Name: svn:eol-style
   + native

Added: zope.component/trunk/TODO.txt
===================================================================
--- zope.component/trunk/TODO.txt	2007-01-19 02:58:41 UTC (rev 72098)
+++ zope.component/trunk/TODO.txt	2007-01-19 04:40:03 UTC (rev 72099)
@@ -0,0 +1 @@
+ - Remove zope.testing dependency


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


Property changes on: zope.component/trunk/develop.py
___________________________________________________________________
Name: svn:keywords
   + Id
Name: svn:eol-style
   + native

Modified: zope.component/trunk/setup.py
===================================================================
--- zope.component/trunk/setup.py	2007-01-19 02:58:41 UTC (rev 72098)
+++ zope.component/trunk/setup.py	2007-01-19 04:40:03 UTC (rev 72099)
@@ -24,17 +24,21 @@
     from distutils.core import setup, Extension
 
 setup(name='zope.component',
-      version='3.3-dev',
+      version='3.4-dev',
       url='http://svn.zope.org/zope.component',
       license='ZPL 2.1',
-      description='component',
+      description='Core of the Zope Component Architecture',
       author='Zope Corporation and Contributors',
       author_email='zope3-dev at zope.org',
-      long_description='',
+      long_description="This package, together with `zope.interface`,"
+                       "provides facilities for defining, registering"
+                       "and looking up components.  There are two basic"
+                       "kinds of components: adapters and utilities.",
       
       packages=['zope',
                 'zope.component',
                 'zope.component.bbb',
+                'zope.component.testfiles',
                ],
       package_dir = {'': 'src'},
 
@@ -43,6 +47,14 @@
       install_requires=['zope.deprecation',
                         'zope.exceptions',
                         'zope.interface',
+                        'zope.deferredimport',
+                        'zope.hookable',
+                        'zope.event',
+                        'zope.configuration',
+                        'zope.security',
+                        'zope.proxy',
+                        'zope.i18nmessageid',
+                        'zope.testing',
                        ],
       include_package_data = True,
 


Property changes on: zope.component/trunk/setup.py
___________________________________________________________________
Name: svn:keywords
   + Id
Name: svn:eol-style
   + native

Modified: zope.component/trunk/test.py
===================================================================
--- zope.component/trunk/test.py	2007-01-19 02:58:41 UTC (rev 72098)
+++ zope.component/trunk/test.py	2007-01-19 04:40:03 UTC (rev 72099)
@@ -29,7 +29,7 @@
 defaults = [
     '--path', src,
     '--package', 'zope.component',
-    '--tests-pattern', '^tests$',
+    '--tests-pattern', '^f?tests$',
     ]
 
 sys.exit(testrunner.run(defaults))


Property changes on: zope.component/trunk/test.py
___________________________________________________________________
Name: svn:keywords
   + Id
Name: svn:eol-style
   + native



More information about the Checkins mailing list