# HG changeset patch # User Goffi # Date 1460906004 -7200 # Node ID 9cd2ec1b722a4e8c1ca3f2e4b9a46a298576d356 # Parent f82b97d9ca5f0b24debcf2ae0a9e715a36f2614b removed pyfeed and xe from dependencies, they are not used anymore diff -r f82b97d9ca5f -r 9cd2ec1b722a README --- a/README Fri Mar 25 12:17:53 2016 +0100 +++ b/README Sun Apr 17 17:13:24 2016 +0200 @@ -56,9 +56,6 @@ Pyjamas: Libervia is built with a Pyjamas (http://pyjs.org), a Google Web Toolkit port for python, including Python to Javascript compiler, and Pyjamas Desktop which allow to execute the same application on the desktop or through a browser. It's really an amazing tool. -Pyfeed and Xe: -SàT core and Libervia use pyfeed and xe (http://home.avvanta.com/%7Esteveha/pyfeed.html), 2 libraries made Steve R. Hastings really useful to parse/generate xml stuff as atom feeds. - lxml(http://lxml.de/): this powerful and efficient XML parsing module is used sometimes to replace Twisted internal tools: its API is handy, and it have some features like evil content cleaning. diff -r f82b97d9ca5f -r 9cd2ec1b722a setup.py --- a/setup.py Fri Mar 25 12:17:53 2016 +0100 +++ b/setup.py Sun Apr 17 17:13:24 2016 +0200 @@ -298,7 +298,6 @@ for root, dirs, files in os.walk(C.THEMES_DIR)], scripts=[], zip_safe=False, - dependency_links=['http://www.blarg.net/%7Esteveha/pyfeed-0.7.4.tar.gz', 'http://www.blarg.net/%7Esteveha/xe-0.7.4.tar.gz'], - install_requires=['sat', 'twisted', 'pyfeed', 'xe', 'txJSON-RPC', 'zope.interface', 'pyopenssl', 'jinja2'], + install_requires=['sat', 'twisted', 'txJSON-RPC', 'zope.interface', 'pyopenssl', 'jinja2'], cmdclass={'install': CustomInstall}, )