-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy path.veh.conf
39 lines (35 loc) · 1.1 KB
/
.veh.conf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
[packages]
# enter package names here like
# packagelabel = packagename
#
# The package name on the right are passed directly to pip.
# The package label is not used right now.
#
# This makes it easy to use either a pypi name:
# packagelabel = packagename
# or if the package name is the same as the option label:
# packagelabel =
#
# or a url:
# packagelabel = http://pypi.python.org/packages/source/v/virtualenv/virtualenv-1.4.9.tar.gz#md5=c49067cab242b5ff8c7b681a5a99533a
#
# or a vc reference:
# packagelabel = hg+http://domain/repo
django-xslt = django-xslt==0.4.4
django = django==1.3
lxml = lxml==2.3
ipython = ipython
mock = mock
[veh]
# supported options for veh:
# rebuilding creates a brand new virtualenv leaving the old in place.
# the following options controls whether the previously active virtualenv
# is deleted during rebuild or not:
# delete-on-rebuild = true
[pip]
# supported options for pip:
# always-upgrade = true
# supply the --upgrade option to pip when building the virtualenv
download-cache = ~/.pipdownloadcache
# specifies a directory to use for pip's download cache
# End