METADATA 2.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  1. Metadata-Version: 2.1
  2. Name: execnet
  3. Version: 1.6.0
  4. Summary: execnet: rapid multi-Python deployment
  5. Home-page: https://execnet.readthedocs.io/en/latest/
  6. Author: holger krekel and others
  7. License: MIT
  8. Platform: unix
  9. Platform: linux
  10. Platform: osx
  11. Platform: cygwin
  12. Platform: win32
  13. Classifier: Development Status :: 5 - Production/Stable
  14. Classifier: Intended Audience :: Developers
  15. Classifier: License :: OSI Approved :: MIT License
  16. Classifier: Operating System :: POSIX
  17. Classifier: Operating System :: Microsoft :: Windows
  18. Classifier: Operating System :: MacOS :: MacOS X
  19. Classifier: Topic :: Software Development :: Libraries
  20. Classifier: Topic :: System :: Distributed Computing
  21. Classifier: Topic :: System :: Networking
  22. Classifier: Programming Language :: Python :: 2
  23. Classifier: Programming Language :: Python :: 2.7
  24. Classifier: Programming Language :: Python :: 3
  25. Classifier: Programming Language :: Python :: 3.4
  26. Classifier: Programming Language :: Python :: 3.5
  27. Classifier: Programming Language :: Python :: 3.6
  28. Classifier: Programming Language :: Python :: 3.7
  29. Classifier: Programming Language :: Python :: Implementation :: CPython
  30. Classifier: Programming Language :: Python :: Implementation :: PyPy
  31. Requires-Python: >=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*
  32. Requires-Dist: apipkg (>=1.4)
  33. execnet: distributed Python deployment and communication
  34. ========================================================
  35. .. image:: https://img.shields.io/pypi/v/execnet.svg
  36. :target: https://pypi.org/project/execnet/
  37. .. image:: https://anaconda.org/conda-forge/execnet/badges/version.svg
  38. :target: https://anaconda.org/conda-forge/execnet
  39. .. image:: https://img.shields.io/pypi/pyversions/execnet.svg
  40. :target: https://pypi.org/project/execnet/
  41. .. image:: https://travis-ci.org/pytest-dev/execnet.svg?branch=master
  42. :target: https://travis-ci.org/pytest-dev/execnet
  43. .. image:: https://ci.appveyor.com/api/projects/status/n9qy8df16my4gds9/branch/master?svg=true
  44. :target: https://ci.appveyor.com/project/pytestbot/execnet
  45. .. _execnet: http://codespeak.net/execnet
  46. execnet_ provides carefully tested means to ad-hoc interact with Python
  47. interpreters across version, platform and network barriers. It provides
  48. a minimal and fast API targetting the following uses:
  49. * distribute tasks to local or remote processes
  50. * write and deploy hybrid multi-process applications
  51. * write scripts to administer multiple hosts
  52. Features
  53. ------------------
  54. * zero-install bootstrapping: no remote installation required!
  55. * flexible communication: send/receive as well as
  56. callback/queue mechanisms supported
  57. * simple serialization of python builtin types (no pickling)
  58. * grouped creation and robust termination of processes
  59. * well tested between CPython 2.7, 3.4+, Jython 2.5.1 and PyPy 2.2
  60. interpreters.
  61. * interoperable between Windows and Unix-ish systems.
  62. * integrates with different threading models, including standard
  63. os threads, eventlet and gevent based systems.