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

Popular posts from this blog

image - ClassNotFoundException when add a prebuilt apk into system.img in android -

I need to import mysql 5.1 to 5.5? -

Java, Hibernate, MySQL - store UTC date-time -