mirror of
https://github.com/Syncplay/syncplay
synced 2024-12-11 17:35:58 +00:00
281d8023fd
* setuptools: Initial commit * setuptools: remove the .py extension from installed commands * setuptools: restructure scripts to use entry_points in setup.py * setuptools: include TLS dependencies and remove unneeded code * setuptools: change resources path * AppVeyor: upgrade Python and py2exe, embed TLS dependencies * buildpy2exe: fix path for resources * AppVeyor: upgrade py2exe and PySide2 * Amend setup.py according to the suggestions from PR #230 * Insert TLS dependencies in requirements * AppVeyor: fix build for master * AppVeyor: revert to PySide2 5.12.0
17 lines
389 B
Python
Executable File
17 lines
389 B
Python
Executable File
#!/usr/bin/env python3
|
|
|
|
import sys
|
|
|
|
# libpath
|
|
|
|
try:
|
|
if (sys.version_info.major != 3) or (sys.version_info.minor < 4):
|
|
raise Exception("You must run Syncplay with Python 3.4 or newer!")
|
|
except AttributeError:
|
|
import warnings
|
|
warnings.warn("You must run Syncplay with Python 3.4 or newer!")
|
|
|
|
from syncplay import ep_client
|
|
|
|
if __name__ == '__main__':
|
|
ep_client.main() |