diff options
| author | Jan Tuomi <jan@jantuomi.fi> | 2025-05-14 14:46:39 +0300 |
|---|---|---|
| committer | Jan Tuomi <jan@jantuomi.fi> | 2025-05-14 14:46:39 +0300 |
| commit | 1981fc936100ef6253fadfb05b49a6ca3bf384bc (patch) | |
| tree | 0ebae0a03596ee127601649c0f344b182c859921 | |
| parent | 9fe5d3a2b988769c449d02cce318ca349ae7affc (diff) | |
Update readme
| -rw-r--r-- | README.md | 11 | ||||
| -rw-r--r-- | pyproject.toml | 2 |
2 files changed, 11 insertions, 2 deletions
@@ -1,5 +1,7 @@ # FemtoQueue + + Ever wanted a zero-dependency, filesystem-backed, lock-free, durable, concurrent, retrying task queue implementation? No? ## Example @@ -19,7 +21,14 @@ print("All tasks processed") ## Installation -Just chuck the `femtoqueue.py` file into your Python 3 project. There are no dependencies other than the standard library. +`femtoqueue` is available on [PyPI](https://pypi.org/project/femtoqueue/). + +```bash +uv add femtoqueue # using uv +pip install femtoqueue # using pip +``` + +Or just chuck the `femtoqueue.py` file into your Python 3 project. There are no dependencies other than the standard library. ## Features diff --git a/pyproject.toml b/pyproject.toml index f41761c..04769af 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "femtoqueue" -version = "0.1.1" +version = "0.1.2" description = "Ever wanted a zero-dependency, filesystem-backed, lock-free, durable, concurrent, retrying task queue implementation? No?" readme = "README.md" requires-python = ">=3.9" |
