Welcome to mirror list, hosted at ThFree Co, Russian Federation.

pip_install_editable.py « tools - github.com/certbot/certbot.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 3f7c02ba985dd7a4b3c15f229538cc75c3baa7e3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#!/usr/bin/env python
# pip installs packages in editable mode using certbot-auto's requirements file
# as constraints

from __future__ import absolute_import

import sys

import pip_install


def main(args):
    new_args = []
    for arg in args:
        new_args.append('-e')
        new_args.append(arg)

    pip_install.main(new_args)

if __name__ == '__main__':
    main(sys.argv[1:])