├── .gitignore ├── .travis.yml ├── licence ├── readme.md ├── requirements-dev.txt ├── requirements.txt ├── setup.cfg ├── setup.py ├── src ├── main │ ├── data_pipe │ │ ├── .gitignore │ │ ├── __init__.py │ │ ├── any_buffer.py │ │ ├── any_index.py │ │ ├── basic_buffer.py │ │ ├── basic_index.py │ │ ├── basic_ruptor.py │ │ ├── basic_trunk.py │ │ ├── native_any.h │ │ ├── native_any.pxd │ │ ├── native_buffer.py │ │ ├── native_buffer.pyx │ │ ├── native_index.pyx │ │ ├── native_ruptor.pyx │ │ └── runtime_library.pyx │ └── readme.md ├── perf │ ├── data_pipe_perf │ │ ├── __init__.py │ │ ├── any_buffer_perf.py │ │ ├── any_ruptor_perf.py │ │ ├── basic_buffer_perf.py │ │ ├── native_buffer_perf.py │ │ ├── py_asio_queue_perf.py │ │ ├── py_curio_queue_perf.py │ │ ├── py_os_pipe_perf.py │ │ ├── py_sync_queue_perf.py │ │ └── py_trio_queue_perf.py │ └── readme.md ├── readme.md ├── test │ ├── data_pipe_test │ │ ├── __init__.py │ │ ├── any_buffer_test.py │ │ ├── basic_buffer_test.py │ │ ├── basic_index_test.py │ │ ├── basic_ruptor_test.py │ │ ├── basic_trunk_test.py │ │ ├── native_buffer_test.py │ │ ├── native_futex_test.py │ │ ├── native_index_test.py │ │ ├── native_ruptor_test.py │ │ ├── verify_buffer.py │ │ └── verify_index.py │ └── readme.md └── verify │ ├── design │ ├── __init__.py │ ├── buffer.py │ ├── buffer_test.py │ ├── channel.py │ ├── message.py │ ├── native.py │ ├── native_a.h │ ├── native_a1.h │ ├── native_base_test.py │ ├── native_code.c │ ├── native_code1.c │ ├── native_core_test.py │ ├── native_module.pyx │ ├── native_system.pxd │ ├── native_test.py │ ├── packer.py │ ├── sequence.py │ ├── sequence_1.py │ ├── sequence_2.py │ ├── sequence_test.py │ ├── simple.py │ ├── simple2.py │ ├── simple2_test.py │ ├── simple3.py │ ├── simple3_test.py │ ├── simple_index_perf2.py │ ├── simple_index_perf3.py │ ├── storage_2.py │ └── verify_priority.py │ ├── library │ ├── __init__.py │ ├── atomic_long │ │ ├── atomiclong.py │ │ └── atomiclong_test.py │ ├── cardinal_peak │ │ ├── __init__.py │ │ └── prodcons.cpp │ ├── green_let │ │ ├── __init__.py │ │ ├── basic.py │ │ └── invoke_chain.py │ ├── num_py │ │ ├── __init__.py │ │ └── array_alloc.py │ └── raise_error │ │ ├── __init__.py │ │ └── main_1.py │ ├── perform │ ├── __init__.py │ ├── nice │ │ ├── __init__.py │ │ ├── nice_1.py │ │ ├── nice_2.py │ │ └── nice_3.py │ └── struct_class │ │ ├── __init__.py │ │ └── main_1.py │ └── readme.md ├── tool ├── github_squash.py ├── install_local.py ├── native_build.launch ├── native_build.py ├── perform_tox.py ├── readme.md ├── release_update.py └── tox_verify.py └── tox.ini /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/random-python/data_pipe/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/random-python/data_pipe/HEAD/.travis.yml -------------------------------------------------------------------------------- /licence: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/random-python/data_pipe/HEAD/licence -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/random-python/data_pipe/HEAD/readme.md -------------------------------------------------------------------------------- /requirements-dev.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/random-python/data_pipe/HEAD/requirements-dev.txt -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/random-python/data_pipe/HEAD/requirements.txt -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/random-python/data_pipe/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/random-python/data_pipe/HEAD/setup.py -------------------------------------------------------------------------------- /src/main/data_pipe/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/random-python/data_pipe/HEAD/src/main/data_pipe/.gitignore -------------------------------------------------------------------------------- /src/main/data_pipe/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/data_pipe/any_buffer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/random-python/data_pipe/HEAD/src/main/data_pipe/any_buffer.py -------------------------------------------------------------------------------- /src/main/data_pipe/any_index.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/random-python/data_pipe/HEAD/src/main/data_pipe/any_index.py -------------------------------------------------------------------------------- /src/main/data_pipe/basic_buffer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/random-python/data_pipe/HEAD/src/main/data_pipe/basic_buffer.py -------------------------------------------------------------------------------- /src/main/data_pipe/basic_index.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/random-python/data_pipe/HEAD/src/main/data_pipe/basic_index.py -------------------------------------------------------------------------------- /src/main/data_pipe/basic_ruptor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/random-python/data_pipe/HEAD/src/main/data_pipe/basic_ruptor.py -------------------------------------------------------------------------------- /src/main/data_pipe/basic_trunk.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/random-python/data_pipe/HEAD/src/main/data_pipe/basic_trunk.py -------------------------------------------------------------------------------- /src/main/data_pipe/native_any.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/random-python/data_pipe/HEAD/src/main/data_pipe/native_any.h -------------------------------------------------------------------------------- /src/main/data_pipe/native_any.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/random-python/data_pipe/HEAD/src/main/data_pipe/native_any.pxd -------------------------------------------------------------------------------- /src/main/data_pipe/native_buffer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/random-python/data_pipe/HEAD/src/main/data_pipe/native_buffer.py -------------------------------------------------------------------------------- /src/main/data_pipe/native_buffer.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/random-python/data_pipe/HEAD/src/main/data_pipe/native_buffer.pyx -------------------------------------------------------------------------------- /src/main/data_pipe/native_index.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/random-python/data_pipe/HEAD/src/main/data_pipe/native_index.pyx -------------------------------------------------------------------------------- /src/main/data_pipe/native_ruptor.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/random-python/data_pipe/HEAD/src/main/data_pipe/native_ruptor.pyx -------------------------------------------------------------------------------- /src/main/data_pipe/runtime_library.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/random-python/data_pipe/HEAD/src/main/data_pipe/runtime_library.pyx -------------------------------------------------------------------------------- /src/main/readme.md: -------------------------------------------------------------------------------- 1 | 2 | ### project main sources 3 | -------------------------------------------------------------------------------- /src/perf/data_pipe_perf/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/perf/data_pipe_perf/any_buffer_perf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/random-python/data_pipe/HEAD/src/perf/data_pipe_perf/any_buffer_perf.py -------------------------------------------------------------------------------- /src/perf/data_pipe_perf/any_ruptor_perf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/random-python/data_pipe/HEAD/src/perf/data_pipe_perf/any_ruptor_perf.py -------------------------------------------------------------------------------- /src/perf/data_pipe_perf/basic_buffer_perf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/random-python/data_pipe/HEAD/src/perf/data_pipe_perf/basic_buffer_perf.py -------------------------------------------------------------------------------- /src/perf/data_pipe_perf/native_buffer_perf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/random-python/data_pipe/HEAD/src/perf/data_pipe_perf/native_buffer_perf.py -------------------------------------------------------------------------------- /src/perf/data_pipe_perf/py_asio_queue_perf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/random-python/data_pipe/HEAD/src/perf/data_pipe_perf/py_asio_queue_perf.py -------------------------------------------------------------------------------- /src/perf/data_pipe_perf/py_curio_queue_perf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/random-python/data_pipe/HEAD/src/perf/data_pipe_perf/py_curio_queue_perf.py -------------------------------------------------------------------------------- /src/perf/data_pipe_perf/py_os_pipe_perf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/random-python/data_pipe/HEAD/src/perf/data_pipe_perf/py_os_pipe_perf.py -------------------------------------------------------------------------------- /src/perf/data_pipe_perf/py_sync_queue_perf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/random-python/data_pipe/HEAD/src/perf/data_pipe_perf/py_sync_queue_perf.py -------------------------------------------------------------------------------- /src/perf/data_pipe_perf/py_trio_queue_perf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/random-python/data_pipe/HEAD/src/perf/data_pipe_perf/py_trio_queue_perf.py -------------------------------------------------------------------------------- /src/perf/readme.md: -------------------------------------------------------------------------------- 1 | 2 | ### project benchmarks 3 | -------------------------------------------------------------------------------- /src/readme.md: -------------------------------------------------------------------------------- 1 | 2 | ### project sources 3 | -------------------------------------------------------------------------------- /src/test/data_pipe_test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/test/data_pipe_test/any_buffer_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/random-python/data_pipe/HEAD/src/test/data_pipe_test/any_buffer_test.py -------------------------------------------------------------------------------- /src/test/data_pipe_test/basic_buffer_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/random-python/data_pipe/HEAD/src/test/data_pipe_test/basic_buffer_test.py -------------------------------------------------------------------------------- /src/test/data_pipe_test/basic_index_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/random-python/data_pipe/HEAD/src/test/data_pipe_test/basic_index_test.py -------------------------------------------------------------------------------- /src/test/data_pipe_test/basic_ruptor_test.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/test/data_pipe_test/basic_trunk_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/random-python/data_pipe/HEAD/src/test/data_pipe_test/basic_trunk_test.py -------------------------------------------------------------------------------- /src/test/data_pipe_test/native_buffer_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/random-python/data_pipe/HEAD/src/test/data_pipe_test/native_buffer_test.py -------------------------------------------------------------------------------- /src/test/data_pipe_test/native_futex_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/random-python/data_pipe/HEAD/src/test/data_pipe_test/native_futex_test.py -------------------------------------------------------------------------------- /src/test/data_pipe_test/native_index_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/random-python/data_pipe/HEAD/src/test/data_pipe_test/native_index_test.py -------------------------------------------------------------------------------- /src/test/data_pipe_test/native_ruptor_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/random-python/data_pipe/HEAD/src/test/data_pipe_test/native_ruptor_test.py -------------------------------------------------------------------------------- /src/test/data_pipe_test/verify_buffer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/random-python/data_pipe/HEAD/src/test/data_pipe_test/verify_buffer.py -------------------------------------------------------------------------------- /src/test/data_pipe_test/verify_index.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/random-python/data_pipe/HEAD/src/test/data_pipe_test/verify_index.py -------------------------------------------------------------------------------- /src/test/readme.md: -------------------------------------------------------------------------------- 1 | 2 | ### project unit test sources 3 | -------------------------------------------------------------------------------- /src/verify/design/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/verify/design/buffer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/random-python/data_pipe/HEAD/src/verify/design/buffer.py -------------------------------------------------------------------------------- /src/verify/design/buffer_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/random-python/data_pipe/HEAD/src/verify/design/buffer_test.py -------------------------------------------------------------------------------- /src/verify/design/channel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/random-python/data_pipe/HEAD/src/verify/design/channel.py -------------------------------------------------------------------------------- /src/verify/design/message.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/random-python/data_pipe/HEAD/src/verify/design/message.py -------------------------------------------------------------------------------- /src/verify/design/native.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/random-python/data_pipe/HEAD/src/verify/design/native.py -------------------------------------------------------------------------------- /src/verify/design/native_a.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/random-python/data_pipe/HEAD/src/verify/design/native_a.h -------------------------------------------------------------------------------- /src/verify/design/native_a1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/random-python/data_pipe/HEAD/src/verify/design/native_a1.h -------------------------------------------------------------------------------- /src/verify/design/native_base_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/random-python/data_pipe/HEAD/src/verify/design/native_base_test.py -------------------------------------------------------------------------------- /src/verify/design/native_code.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/random-python/data_pipe/HEAD/src/verify/design/native_code.c -------------------------------------------------------------------------------- /src/verify/design/native_code1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/random-python/data_pipe/HEAD/src/verify/design/native_code1.c -------------------------------------------------------------------------------- /src/verify/design/native_core_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/random-python/data_pipe/HEAD/src/verify/design/native_core_test.py -------------------------------------------------------------------------------- /src/verify/design/native_module.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/random-python/data_pipe/HEAD/src/verify/design/native_module.pyx -------------------------------------------------------------------------------- /src/verify/design/native_system.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/random-python/data_pipe/HEAD/src/verify/design/native_system.pxd -------------------------------------------------------------------------------- /src/verify/design/native_test.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/verify/design/packer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/random-python/data_pipe/HEAD/src/verify/design/packer.py -------------------------------------------------------------------------------- /src/verify/design/sequence.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/random-python/data_pipe/HEAD/src/verify/design/sequence.py -------------------------------------------------------------------------------- /src/verify/design/sequence_1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/random-python/data_pipe/HEAD/src/verify/design/sequence_1.py -------------------------------------------------------------------------------- /src/verify/design/sequence_2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/random-python/data_pipe/HEAD/src/verify/design/sequence_2.py -------------------------------------------------------------------------------- /src/verify/design/sequence_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/random-python/data_pipe/HEAD/src/verify/design/sequence_test.py -------------------------------------------------------------------------------- /src/verify/design/simple.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/random-python/data_pipe/HEAD/src/verify/design/simple.py -------------------------------------------------------------------------------- /src/verify/design/simple2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/random-python/data_pipe/HEAD/src/verify/design/simple2.py -------------------------------------------------------------------------------- /src/verify/design/simple2_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/random-python/data_pipe/HEAD/src/verify/design/simple2_test.py -------------------------------------------------------------------------------- /src/verify/design/simple3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/random-python/data_pipe/HEAD/src/verify/design/simple3.py -------------------------------------------------------------------------------- /src/verify/design/simple3_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/random-python/data_pipe/HEAD/src/verify/design/simple3_test.py -------------------------------------------------------------------------------- /src/verify/design/simple_index_perf2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/random-python/data_pipe/HEAD/src/verify/design/simple_index_perf2.py -------------------------------------------------------------------------------- /src/verify/design/simple_index_perf3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/random-python/data_pipe/HEAD/src/verify/design/simple_index_perf3.py -------------------------------------------------------------------------------- /src/verify/design/storage_2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/random-python/data_pipe/HEAD/src/verify/design/storage_2.py -------------------------------------------------------------------------------- /src/verify/design/verify_priority.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/random-python/data_pipe/HEAD/src/verify/design/verify_priority.py -------------------------------------------------------------------------------- /src/verify/library/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/verify/library/atomic_long/atomiclong.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/random-python/data_pipe/HEAD/src/verify/library/atomic_long/atomiclong.py -------------------------------------------------------------------------------- /src/verify/library/atomic_long/atomiclong_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/random-python/data_pipe/HEAD/src/verify/library/atomic_long/atomiclong_test.py -------------------------------------------------------------------------------- /src/verify/library/cardinal_peak/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/verify/library/cardinal_peak/prodcons.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/random-python/data_pipe/HEAD/src/verify/library/cardinal_peak/prodcons.cpp -------------------------------------------------------------------------------- /src/verify/library/green_let/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/verify/library/green_let/basic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/random-python/data_pipe/HEAD/src/verify/library/green_let/basic.py -------------------------------------------------------------------------------- /src/verify/library/green_let/invoke_chain.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/random-python/data_pipe/HEAD/src/verify/library/green_let/invoke_chain.py -------------------------------------------------------------------------------- /src/verify/library/num_py/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/verify/library/num_py/array_alloc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/random-python/data_pipe/HEAD/src/verify/library/num_py/array_alloc.py -------------------------------------------------------------------------------- /src/verify/library/raise_error/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/verify/library/raise_error/main_1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/random-python/data_pipe/HEAD/src/verify/library/raise_error/main_1.py -------------------------------------------------------------------------------- /src/verify/perform/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/verify/perform/nice/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/verify/perform/nice/nice_1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/random-python/data_pipe/HEAD/src/verify/perform/nice/nice_1.py -------------------------------------------------------------------------------- /src/verify/perform/nice/nice_2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/random-python/data_pipe/HEAD/src/verify/perform/nice/nice_2.py -------------------------------------------------------------------------------- /src/verify/perform/nice/nice_3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/random-python/data_pipe/HEAD/src/verify/perform/nice/nice_3.py -------------------------------------------------------------------------------- /src/verify/perform/struct_class/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/verify/perform/struct_class/main_1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/random-python/data_pipe/HEAD/src/verify/perform/struct_class/main_1.py -------------------------------------------------------------------------------- /src/verify/readme.md: -------------------------------------------------------------------------------- 1 | 2 | ### project integration tests 3 | -------------------------------------------------------------------------------- /tool/github_squash.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/random-python/data_pipe/HEAD/tool/github_squash.py -------------------------------------------------------------------------------- /tool/install_local.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/random-python/data_pipe/HEAD/tool/install_local.py -------------------------------------------------------------------------------- /tool/native_build.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/random-python/data_pipe/HEAD/tool/native_build.launch -------------------------------------------------------------------------------- /tool/native_build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/random-python/data_pipe/HEAD/tool/native_build.py -------------------------------------------------------------------------------- /tool/perform_tox.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/random-python/data_pipe/HEAD/tool/perform_tox.py -------------------------------------------------------------------------------- /tool/readme.md: -------------------------------------------------------------------------------- 1 | 2 | ### development support 3 | -------------------------------------------------------------------------------- /tool/release_update.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/random-python/data_pipe/HEAD/tool/release_update.py -------------------------------------------------------------------------------- /tool/tox_verify.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/random-python/data_pipe/HEAD/tool/tox_verify.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/random-python/data_pipe/HEAD/tox.ini --------------------------------------------------------------------------------