added editor

This commit is contained in:
Clemens-Dautermann 2020-04-25 16:59:20 +02:00
parent b1b315f3d7
commit d2971cf070
695 changed files with 3256 additions and 0 deletions

12
venv/bin/futurize Executable file
View file

@ -0,0 +1,12 @@
#!/home/clemens/repositorys/pytorch-ai/venv/bin/python
# EASY-INSTALL-ENTRY-SCRIPT: 'future==0.18.2','console_scripts','futurize'
__requires__ = 'future==0.18.2'
import re
import sys
from pkg_resources import load_entry_point
if __name__ == '__main__':
sys.argv[0] = re.sub(r'(-script\.pyw?|\.exe)?$', '', sys.argv[0])
sys.exit(
load_entry_point('future==0.18.2', 'console_scripts', 'futurize')()
)