diff options
author | Alon Zakai <alonzakai@gmail.com> | 2012-09-30 10:24:53 -0700 |
---|---|---|
committer | Alon Zakai <alonzakai@gmail.com> | 2012-09-30 10:24:53 -0700 |
commit | b614f2bc5d9fc421565824b1ceb9a3384f26f35f (patch) | |
tree | 243c47baa4c6ce4273a5743d79f3c0dbc78789e5 /third_party/websockify/setup.py | |
parent | c70758e3b49beb016a3d9db7b609c499d55de48b (diff) | |
parent | 7eaa78060c34489c7e56193c725641303d520f31 (diff) |
Merge branch 'incoming'
Diffstat (limited to 'third_party/websockify/setup.py')
-rw-r--r-- | third_party/websockify/setup.py | 30 |
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', + ] + }, + ) |