[wwwsearch-commits] r19317 - wwwsearch/ClientForm/trunk

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


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

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

Modified: wwwsearch/ClientForm/trunk/setup.py
==============================================================================
--- wwwsearch/ClientForm/trunk/setup.py	(original)
+++ wwwsearch/ClientForm/trunk/setup.py	Tue Nov  1 01:32:32 2005
@@ -6,15 +6,12 @@
 completed forms to the server.  It developed from a port of Gisle Aas'
 Perl module HTML::Form, from the libwww-perl library, but the
 interface is not the same.
-
-SVN URL for Python Eggs:
-
-http://codespeak.net/svn/wwwsearch/ClientForm/trunk#egg=ClientForm-dev
 """
 
 import re
 VERSION_MATCH = re.search(r'VERSION = "(.*)"', open("ClientForm.py").read())
 VERSION = VERSION_MATCH.group(1)
+INSTALL_REQUIRES = []
 NAME = "ClientForm"
 PACKAGE = False
 LICENSE = "BSD"
@@ -65,6 +62,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