parent
de4acf0752
commit
4aa05c7499
7
setup.py
7
setup.py
|
|
@ -5,7 +5,8 @@ name = 'websockify'
|
||||||
long_description = open("README.md").read() + "\n" + \
|
long_description = open("README.md").read() + "\n" + \
|
||||||
open("CHANGES.txt").read() + "\n"
|
open("CHANGES.txt").read() + "\n"
|
||||||
|
|
||||||
setup(name=name,
|
setup(
|
||||||
|
name=name,
|
||||||
version=version,
|
version=version,
|
||||||
description="Websockify.",
|
description="Websockify.",
|
||||||
long_description=long_description,
|
long_description=long_description,
|
||||||
|
|
@ -28,11 +29,11 @@ setup(name=name,
|
||||||
url="https://github.com/novnc/websockify",
|
url="https://github.com/novnc/websockify",
|
||||||
author="Joel Martin",
|
author="Joel Martin",
|
||||||
author_email="github@martintribe.org",
|
author_email="github@martintribe.org",
|
||||||
|
|
||||||
packages=['websockify'],
|
packages=['websockify'],
|
||||||
include_package_data=True,
|
include_package_data=True,
|
||||||
install_requires=[
|
install_requires=[
|
||||||
'numpy', 'requests',
|
'numpy',
|
||||||
|
'requests',
|
||||||
'jwcrypto',
|
'jwcrypto',
|
||||||
'redis',
|
'redis',
|
||||||
],
|
],
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue