[wwwsearch-commits] r19309 - wwwsearch/pullparser/trunk

jjlee at codespeak.net jjlee at codespeak.net
Tue Nov 1 01:05:06 CET 2005


Author: jjlee
Date: Tue Nov  1 01:05:06 2005
New Revision: 19309

Modified:
   wwwsearch/pullparser/trunk/README.html.in
   wwwsearch/pullparser/trunk/setup.py
Log:
setuptools stuff

Modified: wwwsearch/pullparser/trunk/README.html.in
==============================================================================
--- wwwsearch/pullparser/trunk/README.html.in	(original)
+++ wwwsearch/pullparser/trunk/README.html.in	Tue Nov  1 01:05:06 2005
@@ -82,6 +82,16 @@
 <p>For installation instructions, see the INSTALL file included in the
 distribution.
 
+
+<h2>Subversion</h2>
+
+<p>The <a href="http://subversion.tigris.org/">Subversion (SVN)</a> trunk is <a href="http://codespeak.net/svn/wwwsearch/pullparser/trunk#egg=pullparser-dev">http://codespeak.net/svn/wwwsearch/pullparser/trunk</a>, so to check out the source:
+
+<pre>
+svn co http://codespeak.net/svn/wwwsearch/pullparser/trunk
+</pre>
+
+
 <h2>See also</h2>
 
 <p><a href="http://www.crummy.com/software/BeautifulSoup/">Beautiful

Modified: wwwsearch/pullparser/trunk/setup.py
==============================================================================
--- wwwsearch/pullparser/trunk/setup.py	(original)
+++ wwwsearch/pullparser/trunk/setup.py	Tue Nov  1 01:05:06 2005
@@ -5,10 +5,6 @@
 Many simple HTML parsing tasks are simpler this way than with the
 HTMLParser module.  pullparser.PullParser is a subclass of
 HTMLParser.HTMLParser.
-
-SVN URL for Python Eggs:
-
-http://codespeak.net/svn/wwwsearch/pullparser/trunk#egg=pullparser-dev
 """
 
 from pullparser import __version__
@@ -71,16 +67,16 @@
     version = VERSION,
     license = LICENSE,
     platforms = PLATFORMS,
-    classifiers = filter(None, string.split(CLASSIFIERS, "\n")),
+    classifiers = [c for c in CLASSIFIERS.split("\n") if c],
     zip_safe = ZIP_SAFE,
     test_suite = "test",
     author = "John J. Lee",
     author_email = "jjl at pobox.com",
     description = doclines[0],
+    long_description = "\n".join(doclines[2:]),
     url = "http://wwwsearch.sourceforge.net/%s/" % NAME,
     download_url = ("http://wwwsearch.sourceforge.net/%s/src/"
                     "%s-%s.tar.gz" % (NAME, NAME, VERSION)),
-    long_description = string.join(doclines[2:], "\n"),
     py_modules = py_modules,
     packages = packages,
     )


More information about the wwwsearch-commits mailing list