chrisspen / webarticle2text

[DEPRECATED] A script to extract the main article text from an arbitrary webpage.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Fix dependencies declaration in setup.py

ulope opened this issue · comments

You define your dependencies with "requires" in your setup.py.
Unfortunately this key is not used by the major package installers (pip, easy_install).

Define the dependencies with the "setuptools compliant" key "install_requires" instead.

Thank you for pointing this out. This has been updated.