setup.py 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839
  1. from setuptools import setup, find_packages
  2. version = '0.10.0'
  3. name = 'websockify'
  4. long_description = open("README.md").read() + "\n" + \
  5. open("CHANGES.txt").read() + "\n"
  6. setup(name=name,
  7. version=version,
  8. description="Websockify.",
  9. long_description=long_description,
  10. long_description_content_type="text/markdown",
  11. classifiers=[
  12. "Programming Language :: Python",
  13. "Programming Language :: Python :: 3",
  14. "Programming Language :: Python :: 3 :: Only",
  15. "Programming Language :: Python :: 3.4",
  16. "Programming Language :: Python :: 3.5",
  17. "Programming Language :: Python :: 3.6",
  18. "Programming Language :: Python :: 3.7",
  19. "Programming Language :: Python :: 3.8",
  20. "Programming Language :: Python :: 3.9",
  21. ],
  22. keywords='noVNC websockify',
  23. license='LGPLv3',
  24. url="https://github.com/novnc/websockify",
  25. author="Joel Martin",
  26. author_email="github@martintribe.org",
  27. packages=['websockify'],
  28. include_package_data=True,
  29. install_requires=['numpy'],
  30. zip_safe=False,
  31. entry_points={
  32. 'console_scripts': [
  33. 'websockify = websockify.websocketproxy:websockify_init',
  34. ]
  35. },
  36. )