Python module for forwarding commands over WebSockets. Fully asyncio compatible.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

35 lines
765 B

  1. # python setup.py --dry-run --verbose install
  2. import os.path
  3. from setuptools import setup, find_packages
  4. from distutils.core import setup
  5. setup(
  6. name='wsfwd',
  7. version='0.1.0',
  8. author='John-Mark Gurney',
  9. author_email='jmg@funkthat.com',
  10. packages=find_packages(),
  11. #url='',
  12. license='BSD',
  13. description='WebSocket based command run/streaming system.',
  14. #download_url='',
  15. long_description=open('README.md').read(),
  16. install_requires=[
  17. 'aioconsole', # for aioconsole.stream only
  18. 'fastapi',
  19. 'hypercorn',
  20. 'websockets',
  21. ],
  22. extras_require = {
  23. 'dev': [ 'coverage' ],
  24. },
  25. entry_points={
  26. 'console_scripts': [
  27. 'wsfwd = wsfwd.__main__:main',
  28. ]
  29. }
  30. )