aboutsummaryrefslogtreecommitdiff
path: root/third_party/websockify/setup.py
diff options
context:
space:
mode:
Diffstat (limited to 'third_party/websockify/setup.py')
-rw-r--r--third_party/websockify/setup.py30
1 files changed, 30 insertions, 0 deletions
diff --git a/third_party/websockify/setup.py b/third_party/websockify/setup.py
new file mode 100644
index 00000000..947f0a52
--- /dev/null
+++ b/third_party/websockify/setup.py
@@ -0,0 +1,30 @@
+from setuptools import setup, find_packages
+
+version = '0.1.0'
+name = 'websockify'
+long_description = open("README.md").read() + "\n" + \
+ open("CHANGES.txt").read() + "\n"
+
+setup(name=name,
+ version=version,
+ description="Websockify.",
+ long_description=long_description,
+ classifiers=[
+ "Programming Language :: Python",
+ ],
+ keywords='noVNC websockify',
+ license='LGPLv3',
+ url="https://github.com/kanaka/websockify",
+ author="Joel Martin",
+ author_email="github@martintribe.org",
+
+ packages=['websockify'],
+ include_package_data=True,
+ install_requires=['numpy'],
+ zip_safe=False,
+ entry_points={
+ 'console_scripts': [
+ 'websockify = websockify.websocketproxy:websockify_init',
+ ]
+ },
+ )