mirror of
https://github.com/certbot/certbot.git
synced 2026-06-04 22:33:00 -04:00
11 lines
217 B
Python
Executable file
11 lines
217 B
Python
Executable file
#!/usr/bin/env python
|
|
"""Uses pip to upgrade Python packaging tools to pinned versions."""
|
|
import pip_install
|
|
|
|
|
|
def main():
|
|
pip_install.main('pip setuptools wheel'.split())
|
|
|
|
|
|
if __name__ == '__main__':
|
|
main()
|