mirror of
https://github.com/jbowdre/phpIPAM-for-vRA8.git
synced 2024-11-22 15:02:19 +00:00
10 lines
277 B
Python
Executable file
10 lines
277 B
Python
Executable file
#!/home/jbowdre/projects/tango-ipam-sdk/venv_tango/bin/python3
|
|
# -*- coding: utf-8 -*-
|
|
import re
|
|
import sys
|
|
|
|
from setuptools.command.easy_install import main
|
|
|
|
if __name__ == '__main__':
|
|
sys.argv[0] = re.sub(r'(-script\.pyw?|\.exe)?$', '', sys.argv[0])
|
|
sys.exit(main())
|