python - How to include non PyPi packages for virtualenv requirements file? -
is there way include packages/modules not available through pip in requirements file project portable?
the default version of lxml seems have issues pypy need use custom fork.
the problem need heroku (where deploy application) use custom version of lxml , not 1 that's available via pip. there way this?
you can using the listed git packages syntax, need add following line requirements.txt
-e git://github.com/aglyzov/lxml.git#egg=lxml
Comments
Post a Comment