Metadata-Version: 2.4
Name: spsc-ring-threadsafe
Version: 0.0.1
Summary: A thread-safe SPSC queue, implemented on a ring buffer written in C
Author-email: Elias de Jong <elias@fastserial.com>
License-Expression: MIT
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: Programming Language :: C
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: Implementation :: CPython
Classifier: Programming Language :: Python :: Free Threading
Requires-Python: >=3.14
Description-Content-Type: text/markdown
License-File: LICENSE
Dynamic: license-file

# Thread-safe SPSC queue for Python, implemented on a ring buffer written in C

## Run Tests
	uv run python -m unittest discover -s tests -v

## Full rebuild
	uv build && uv pip install dist/spsc_ring_threadsafe-0.0.1-cp314-cp314-linux_x86_64.whl && uv run test.py
