nltk / nltk_contrib

NLTK Contrib
http://nltk.org/
Other
166 stars 137 forks source link

Release nltk_contrib on PyPI #12

Open gregmuellegger opened 10 years ago

gregmuellegger commented 10 years ago

I find it unnecessarily difficult to install the nltk_contrib package as it is not published on PyPI. I know that you can still install with pip, but I want to list nltk_contrib in the dependency list in my setup.py file.

Please consider pushing a release to PyPI.

jlmcgehee21 commented 8 years ago

This has plagued me for a while. I modified setup.py in my fork so that nltk_contrib can be installed via dependency links with pip. In your setup.py:

setup(
    ....
    install_requires=['nltk_contrib==3.1'],
    dependency_links=['git+https://github.com/jlmcgehee21/nltk_contrib.git#egg=nltk_contrib-3.1'], 
    ...
)

This removes the nltk dependency from setup.py itself, which I'm not sure would be accepted in a PR into master on this repo.