Modify your setup.py and add an entry to dependency_links :
dependency_links = [ 'https://github.com/staticdev/django-sorting/tarball/master#egg=django-sort', ],
So far, your install_requires has something like:
install_requires=[ 'Django>=1.3.1', 'django-pagination>=1.0.7', 'django-sort', ],
If you want to use requirements files, follow the recommendations of Yuval Adam .
Hugo tavares
source share