nltk_contrib icon indicating copy to clipboard operation
nltk_contrib copied to clipboard

Release nltk_contrib on PyPI

Open gregmuellegger opened this issue 11 years ago • 1 comments

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.

gregmuellegger avatar Jun 24 '14 12:06 gregmuellegger

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.

jlmcgehee21 avatar Jan 27 '16 21:01 jlmcgehee21