summaryrefslogtreecommitdiff
path: root/setup.py
diff options
context:
space:
mode:
Diffstat (limited to 'setup.py')
-rw-r--r--setup.py10
1 files changed, 9 insertions, 1 deletions
diff --git a/setup.py b/setup.py
index 5794bda..e53a715 100644
--- a/setup.py
+++ b/setup.py
@@ -1,6 +1,6 @@
from setuptools import setup, find_packages
-version = '0.4.0'
+version = '0.4.1'
name = 'websockify'
long_description = open("README.md").read() + "\n" + \
open("CHANGES.txt").read() + "\n"
@@ -12,6 +12,14 @@ setup(name=name,
classifiers=[
"Programming Language :: Python",
],
+ data_files=[('share/websockify/include',
+ ['include/util.js',
+ 'include/base64.js',
+ 'include/websock.js']),
+ ('share/websockify/include/web-socket-js',
+ ['include/web-socket-js/WebSocketMain.swf',
+ 'include/web-socket-js/swfobject.js',
+ 'include/web-socket-js/web_socket.js'])],
keywords='noVNC websockify',
license='LGPLv3',
url="https://github.com/kanaka/websockify",