websockify/setup.py

40 lines
1.2 KiB
Python
Raw Normal View History

2012-02-18 08:43:12 +00:00
from setuptools import setup, find_packages
2021-07-22 16:11:08 +01:00
version = '0.10.0'
2012-02-18 08:43:12 +00:00
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,
long_description_content_type="text/markdown",
2012-02-18 08:43:12 +00:00
classifiers=[
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
2021-07-22 16:20:45 +01:00
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
2012-02-18 08:43:12 +00:00
],
keywords='noVNC websockify',
license='LGPLv3',
url="https://github.com/novnc/websockify",
2012-02-18 08:43:12 +00:00
author="Joel Martin",
author_email="github@martintribe.org",
packages=['websockify'],
2012-02-18 08:43:12 +00:00
include_package_data=True,
install_requires=['numpy'],
zip_safe=False,
entry_points={
'console_scripts': [
'websockify = websockify.websocketproxy:websockify_init',
2012-02-18 08:43:12 +00:00
]
},
)