mirror of
https://github.com/certbot/certbot.git
synced 2026-01-27 19:42:53 +03:00
* Isort execution * Fix pylint, adapt coverage * New isort * Fix magic_typing lint * Second round * Fix pylint * Third round. Store isort configuration * Fix latest mistakes * Other fixes * Add newline * Fix lint errors
22 lines
390 B
Python
Executable File
22 lines
390 B
Python
Executable File
#!/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:])
|