python - Pip installing from github installs only __init__.py file -
i'm trying grasp git(hub) way of managing software. have repository: https://github.com/pythonishvili/django-inguri
and try pip install command
pip install git+git://github.com/pythonishvili/django-inguri.git
the response get:
downloading/unpacking git+git://github.com/pythonishvili/django-inguri.git cloning git://github.com/pythonishvili/django-inguri.git /tmp/pip-bv5r89-build running setup.py egg_info package git+git://github.com/pythonishvili/django-inguri.git installing collected packages: inguri running setup.py install inguri installed inguri cleaning up...
but installation went wrong because in virtualenv (/home/username/.virtualenvs/envname/lib/python2.7/site-packages/inguri
) 2 files:
__init__.py __init__.pyc
what did wrong? how make work?
i believe need add subdirectories of project packages
option of setup.py
file. right now, have outermost directory - inguri
. need add inguri.ads
, inguri.ads.migrations
, forth (as contain .py
files want include in distribution).
you need add following line in manifest file: recursive-include inguri *
Comments
Post a Comment