python - django installing dependencies from git -
is there way tell django install dependencies through external repositories? example, i'd not keep twitter-bootstrap code downloaded repository, i'd define github link , fetch automatically through shell command. silimiar collectstatic
. know can write own, maybe there's built-in or implemented?
python modules can install directly git. example: pip install -e git+git://github.com/jschrewe/django-genericadmin.git
for frontend modules can use tools bower. installing twitter bootstrap: bower install bootstrap
both tools has config files, can used track dependencies.
Comments
Post a Comment