Mercurial > libervia-web
changeset 901:9cd2ec1b722a
removed pyfeed and xe from dependencies, they are not used anymore
author | Goffi <goffi@goffi.org> |
---|---|
date | Sun, 17 Apr 2016 17:13:24 +0200 |
parents | f82b97d9ca5f |
children | 68ab3da65930 |
files | README setup.py |
diffstat | 2 files changed, 1 insertions(+), 5 deletions(-) [+] |
line wrap: on
line diff
--- 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.
--- 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}, )