Skip to content

Commit

Permalink
Add installation to README
Browse files Browse the repository at this point in the history
  • Loading branch information
andrewdalpino committed Oct 15, 2024
1 parent 7b2b37b commit 8a26f5e
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 2 deletions.
7 changes: 7 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,13 @@ An implementation of the OkBloomer algorithm, an autoscaling [Bloom filter](http
- **Bounded** maximum false positive rate
- **Open-source** and free to use commercially

## Installation
Install Ok Bloomer using a Python package manager, example pip:

```
pip install okbloomer
```

### Parameters
| # | Name | Default | Type | Description |
|---|---|---|---|---|
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"

[project]
name = "OkBloomer"
version = "0.0.1"
version = "0.0.2"
requires-python = ">= 3.10"
dependencies = [
"mmh3>5.0.0",
Expand Down
2 changes: 1 addition & 1 deletion src/okbloomer/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
BloomFilter,
)

__version__ = '0.0.1'
__version__ = '0.0.2'

__all__ = [
'BloomFilter',
Expand Down

0 comments on commit 8a26f5e

Please sign in to comment.