-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathavhelper.pyw
executable file
·17 lines (16 loc) · 1.05 KB
/
avhelper.pyw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#!/usr/bin/python2
###############################################################################
# Encoding: UTF-8 #
# Name: main.py #
# Description: Vertex Helper launcher #
# Author: Alexey Zankevich <[email protected]> #
# Copyright: (c) 2010 Alexei Zankevich <[email protected]> #
# Licence: BSD #
###############################################################################
__version__ = "0.3.1"
__author__ = "Alexey Zankevich <[email protected]>"
__copyright__ = "Copyright: (c) 2010 Alexey Zankevich <[email protected]>"
__license__ = "BSD"
if __name__ == '__main__':
from vertex_helper.main import main
main()