Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release nltk_contrib on PyPI #12

Open
gregmuellegger opened this issue Jun 24, 2014 · 1 comment
Open

Release nltk_contrib on PyPI #12

gregmuellegger opened this issue Jun 24, 2014 · 1 comment

Comments

@gregmuellegger
Copy link

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
Copy link

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.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants