[Checkins] SVN: Products.PluggableAuthService/branches/1.5/setup.py setuptools is required with namespaces. Fixes a setuptools deprecation warning

Wichert Akkerman wichert at wiggy.net
Sat Aug 2 09:33:34 EDT 2008


Log message for revision 89224:
  setuptools is required with namespaces. Fixes a setuptools deprecation warning

Changed:
  U   Products.PluggableAuthService/branches/1.5/setup.py

-=-
Modified: Products.PluggableAuthService/branches/1.5/setup.py
===================================================================
--- Products.PluggableAuthService/branches/1.5/setup.py	2008-08-02 13:32:02 UTC (rev 89223)
+++ Products.PluggableAuthService/branches/1.5/setup.py	2008-08-02 13:33:33 UTC (rev 89224)
@@ -48,7 +48,10 @@
       include_package_data=True,
       namespace_packages=['Products'],
       zip_safe=False,
-      install_requires=['Products.PluginRegistry >= 1.1'],
+      install_requires=[
+                'setuptools',
+                'Products.PluginRegistry >= 1.1',
+                ],
       extras_require={'exportimport': ['Products.GenericSetup >= 1.3'],
                      },
       entry_points="""



More information about the Checkins mailing list