Codebase list execnet / bee6792
Import upstream version 1.9.0+git20210726.1.eb5f55f Debian Janitor 2 years ago
8 changed file(s) with 176 addition(s) and 5 deletion(s). Raw diff Collapse all Expand all
00 exclude: doc/en/example/py2py3/test_py2.py
11 repos:
22 - repo: https://github.com/psf/black
3 rev: 21.5b2
3 rev: 21.7b0
44 hooks:
55 - id: black
66 args: [--safe, --quiet]
1717 - id: fix-encoding-pragma
1818 - id: check-yaml
1919 - repo: https://github.com/asottile/reorder_python_imports
20 rev: v2.5.0
20 rev: v2.6.0
2121 hooks:
2222 - id: reorder-python-imports
2323 args: ['--application-directories=execnet']
00 Metadata-Version: 2.1
11 Name: execnet
2 Version: 1.9.0
2 Version: 0.1.dev780+geb5f55f
33 Summary: execnet: rapid multi-Python deployment
44 Home-page: https://execnet.readthedocs.io/en/latest/
55 Author: holger krekel and others
00 # coding: utf-8
11 # file generated by setuptools_scm
22 # don't change, don't track in version control
3 version = '1.9.0'
4 version_tuple = (1, 9, 0)
3 version = '0.1.dev780+geb5f55f'
4 version_tuple = (0, 1, 'dev780+geb5f55f')
0 Metadata-Version: 2.1
1 Name: execnet
2 Version: 0.1.dev780+geb5f55f
3 Summary: execnet: rapid multi-Python deployment
4 Home-page: https://execnet.readthedocs.io/en/latest/
5 Author: holger krekel and others
6 License: MIT
7 Description: execnet: distributed Python deployment and communication
8 ========================================================
9
10 Important
11 ---------
12
13 **execnet currently is in maintenance-only mode, mostly because it is still the backend
14 of the pytest-xdist plugin. Do not use in new projects.**
15
16 .. image:: https://img.shields.io/pypi/v/execnet.svg
17 :target: https://pypi.org/project/execnet/
18
19 .. image:: https://anaconda.org/conda-forge/execnet/badges/version.svg
20 :target: https://anaconda.org/conda-forge/execnet
21
22 .. image:: https://img.shields.io/pypi/pyversions/execnet.svg
23 :target: https://pypi.org/project/execnet/
24
25 .. image:: https://github.com/pytest-dev/execnet/workflows/build/badge.svg
26 :target: https://github.com/pytest-dev/execnet/actions?query=workflow%3Abuild
27
28 .. image:: https://img.shields.io/badge/code%20style-black-000000.svg
29 :target: https://github.com/python/black
30
31 .. _execnet: http://codespeak.net/execnet
32
33 execnet_ provides carefully tested means to ad-hoc interact with Python
34 interpreters across version, platform and network barriers. It provides
35 a minimal and fast API targetting the following uses:
36
37 * distribute tasks to local or remote processes
38 * write and deploy hybrid multi-process applications
39 * write scripts to administer multiple hosts
40
41 Features
42 ------------------
43
44 * zero-install bootstrapping: no remote installation required!
45
46 * flexible communication: send/receive as well as
47 callback/queue mechanisms supported
48
49 * simple serialization of python builtin types (no pickling)
50
51 * grouped creation and robust termination of processes
52
53 * interoperable between Windows and Unix-ish systems.
54
55 * integrates with different threading models, including standard
56 os threads, eventlet and gevent based systems.
57
58 Platform: unix
59 Platform: linux
60 Platform: osx
61 Platform: cygwin
62 Platform: win32
63 Classifier: Development Status :: 5 - Production/Stable
64 Classifier: Intended Audience :: Developers
65 Classifier: License :: OSI Approved :: MIT License
66 Classifier: Operating System :: POSIX
67 Classifier: Operating System :: Microsoft :: Windows
68 Classifier: Operating System :: MacOS :: MacOS X
69 Classifier: Topic :: Software Development :: Libraries
70 Classifier: Topic :: System :: Distributed Computing
71 Classifier: Topic :: System :: Networking
72 Classifier: Programming Language :: Python :: 2
73 Classifier: Programming Language :: Python :: 2.7
74 Classifier: Programming Language :: Python :: 3
75 Classifier: Programming Language :: Python :: 3.5
76 Classifier: Programming Language :: Python :: 3.6
77 Classifier: Programming Language :: Python :: 3.7
78 Classifier: Programming Language :: Python :: 3.8
79 Classifier: Programming Language :: Python :: 3.9
80 Classifier: Programming Language :: Python :: Implementation :: CPython
81 Classifier: Programming Language :: Python :: Implementation :: PyPy
82 Requires-Python: >=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*
83 Provides-Extra: testing
0 .gitignore
1 .pre-commit-config.yaml
2 CHANGELOG.rst
3 ISSUES.txt
4 LICENSE
5 README.rst
6 RELEASING.rst
7 setup.cfg
8 setup.py
9 tox.ini
10 .github/workflows/main.yml
11 doc/Makefile
12 doc/__init__.py
13 doc/basics.rst
14 doc/changelog.rst
15 doc/conf.py
16 doc/examples.rst
17 doc/implnotes.rst
18 doc/index.rst
19 doc/install.rst
20 doc/support.rst
21 doc/_static/basic1.png
22 doc/_static/codespeak.png
23 doc/_static/execnet.png
24 doc/_static/pythonring.png
25 doc/_templates/indexsidebar.html
26 doc/_templates/layout.html
27 doc/example/conftest.py
28 doc/example/funcmultiplier.py
29 doc/example/hybridpython.rst
30 doc/example/popen_read_multiple.py
31 doc/example/py3topy2.py
32 doc/example/redirect_remote_output.py
33 doc/example/remote1.py
34 doc/example/remotecmd.py
35 doc/example/servefiles.py
36 doc/example/svn-sync-repo.py
37 doc/example/sysinfo.py
38 doc/example/taskserver.py
39 doc/example/test_debug.rst
40 doc/example/test_funcmultiplier.py
41 doc/example/test_group.rst
42 doc/example/test_info.rst
43 doc/example/test_multi.rst
44 doc/example/test_proxy.rst
45 doc/example/test_ssh_fileserver.rst
46 execnet/__init__.py
47 execnet/_version.py
48 execnet/deprecated.py
49 execnet/gateway.py
50 execnet/gateway_base.py
51 execnet/gateway_bootstrap.py
52 execnet/gateway_io.py
53 execnet/gateway_socket.py
54 execnet/multi.py
55 execnet/rsync.py
56 execnet/rsync_remote.py
57 execnet/xspec.py
58 execnet.egg-info/PKG-INFO
59 execnet.egg-info/SOURCES.txt
60 execnet.egg-info/dependency_links.txt
61 execnet.egg-info/requires.txt
62 execnet.egg-info/top_level.txt
63 execnet/script/__init__.py
64 execnet/script/loop_socketserver.py
65 execnet/script/quitserver.py
66 execnet/script/shell.py
67 execnet/script/socketserver.py
68 execnet/script/socketserverservice.py
69 execnet/script/xx.py
70 scripts/install-pypy.bat
71 testing/conftest.py
72 testing/test_basics.py
73 testing/test_channel.py
74 testing/test_compatibility_regressions.py
75 testing/test_gateway.py
76 testing/test_multi.py
77 testing/test_rsync.py
78 testing/test_serializer.py
79 testing/test_termination.py
80 testing/test_threadpool.py
81 testing/test_xspec.py
0
1 [testing]
2 pre-commit