mirror of
https://github.com/YunoHost-Apps/seafile_ynh.git
synced 2024-09-03 20:26:01 +02:00
10 lines
343 B
Python
10 lines
343 B
Python
#!/usr/bin/python2.6
|
|
# EASY-INSTALL-ENTRY-SCRIPT: 'WsgiDAV==0.5.1.dev-20140220','console_scripts','seafdav'
|
|
__requires__ = 'WsgiDAV==0.5.1.dev-20140220'
|
|
import sys
|
|
from pkg_resources import load_entry_point
|
|
|
|
if __name__ == '__main__':
|
|
sys.exit(
|
|
load_entry_point('WsgiDAV==0.5.1.dev-20140220', 'console_scripts', 'seafdav')()
|
|
)
|