Mercurial > hg > config
view python/venvit.py @ 694:ebca6d85213a
File "/usr/lib/python3/dist-packages/IPython/config/__init__.py", line 16, in <module>
from .application import *
File "/usr/lib/python3/dist-packages/IPython/config/application.py", line 31, in <module>
from IPython.config.configurable import SingletonConfigurable
File "/usr/lib/python3/dist-packages/IPython/config/configurable.py", line 33, in <module>
from IPython.utils.text import indent, wrap_paragraphs
File "/usr/lib/python3/dist-packages/IPython/utils/text.py", line 28, in <module>
from IPython.external.path import path
File "/usr/lib/python3/dist-packages/IPython/external/path/__init__.py", line 2, in <module>
from path import *
File "/home/jhammel/python/path.py", line 25
print root(path)
^
author | Jeff Hammel <k0scist@gmail.com> |
---|---|
date | Wed, 09 Jul 2014 16:26:49 -0700 |
parents | 0e270a448610 |
children |
line wrap: on
line source
#!/usr/bin/env python """ venvit.py -- the equivalent of ez_setup.py for virtualenv, but less intrusive; It wants a one-step installation to install python into a new virtualenv. venvit is meant to be used via e.g. curl, although you can download it as well: curl http://example.com/path/to/venvit.py | python - <package> If <package> is a package name, it tries to install it from the cheeseshop. If it is a svn/hg/git/tgz/etc URL, it should download and install the software in source. Only useful output -- like the scripts installed -- should be output to the user. Ideally, packages could have a venvit__init__.py (or a better name) that will be executed after installation (or a venvit.txt which would just be output to console, maybe falling back to the README """ import optparse import sys # class for VCS # TODO: hg, git, ... # usage args = sys.argv[1:] if len(args) != 1: print "Usage: %prog <repo-location>" # determine name of the package name = args[0] for i in ('/trunk', '/branches', '/tag'): if name.endswith(i): name = name[:-len(i)] NAME=${NAME%%/} # remove trailing slash NAME=${NAME##*/} if svn info $1 2> /dev/null then CHECKOUT="svn co" else CHECKOUT="hg clone" fi # create a virtualenv and install the software VIRTUAL_ENV_LOCATION="${HOME}/virtualenv/virtualenv.py" python ${VIRTUAL_ENV_LOCATION} ${NAME} cd ${NAME} source bin/activate mkdir src/ cd src/ $CHECKOUT $1 ${NAME} cd ${NAME} python setup.py develop