[wwwsearch-commits] r19316 - wwwsearch/ClientCookie/trunk

jjlee at codespeak.net jjlee at codespeak.net
Tue Nov 1 01:32:22 CET 2005


Author: jjlee
Date: Tue Nov  1 01:32:21 2005
New Revision: 19316

Modified:
   wwwsearch/ClientCookie/trunk/setup.py
Log:
setuptools stuff

Modified: wwwsearch/ClientCookie/trunk/setup.py
==============================================================================
--- wwwsearch/ClientCookie/trunk/setup.py	(original)
+++ wwwsearch/ClientCookie/trunk/setup.py	Tue Nov  1 01:32:21 2005
@@ -10,13 +10,10 @@
 it easier to add new functionality to urllib2 (now part of urllib2, as
 of Python 2.4).  It has developed from a port of Gisle Aas' Perl
 module HTTP::Cookies, from the libwww-perl library.
-
-SVN URL for Python Eggs:
-
-http://codespeak.net/svn/wwwsearch/ClientCookie/trunk#egg=ClientCookie-dev
 """
 
 from ClientCookie import VERSION
+INSTALL_REQUIRES = []
 NAME = "ClientCookie"
 PACKAGE = True
 LICENSE = "BSD"
@@ -64,6 +61,7 @@
     license = LICENSE,
     platforms = PLATFORMS,
     classifiers = [c for c in CLASSIFIERS.split("\n") if c],
+    install_requires = INSTALL_REQUIRES,
     zip_safe = ZIP_SAFE,
     test_suite = "test",
     author = "John J. Lee",


More information about the wwwsearch-commits mailing list