mirror of
https://github.com/Hopiu/django-notifications.git
synced 2026-03-16 21:30:24 +00:00
11 lines
293 B
Python
Executable file
11 lines
293 B
Python
Executable file
#!/Users/utkucanbiyikli/Desktop/Projects/django-notifications/env/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())
|