tigrbl_engine_membloom 0.1.12.dev1__tar.gz → 0.4.0.dev2__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -20,3 +20,5 @@ target/
20
20
  .pip-cache/
21
21
  *.pyd
22
22
  .tmp-release-plan-check.json
23
+ /.uv-pytest-tigrbl-tests
24
+ perf.sqlite
@@ -1,8 +1,12 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: tigrbl_engine_membloom
3
- Version: 0.1.12.dev1
3
+ Version: 0.4.0.dev2
4
4
  Summary: Process-local Bloom filter engine plugin for Tigrbl with optional rotating TTL windows.
5
- Project-URL: Homepage, https://github.com/swarmauri/swarmauri-sdk
5
+ Project-URL: Organization, https://github.com/tigrbl
6
+ Project-URL: Discord, https://discord.gg/K4YTAPapjR
7
+ Project-URL: Homepage, https://github.com/tigrbl/tigrbl
8
+ Project-URL: Repository, https://github.com/tigrbl/tigrbl/tree/master/pkgs/engines/tigrbl_engine_membloom
9
+ Project-URL: Issues, https://github.com/tigrbl/tigrbl/issues
6
10
  Author-email: Jacob Stewart <jacob@swarmauri.com>
7
11
  License-Expression: Apache-2.0
8
12
  License-File: LICENSE
@@ -34,6 +38,10 @@ It is not the authoritative location for repository governance, current target s
34
38
 
35
39
  ## Package identity
36
40
 
41
+ - canonical repository: `https://github.com/tigrbl/tigrbl`
42
+ - organization: `https://github.com/tigrbl`
43
+ - social: `https://discord.gg/K4YTAPapjR`
44
+ - package path: `https://github.com/tigrbl/tigrbl/tree/master/pkgs/engines/tigrbl_engine_membloom`
37
45
  - workspace path: `pkgs/engines/tigrbl_engine_membloom`
38
46
  - workspace class: engine package
39
47
  - implementation layout: `src/tigrbl_engine_membloom/`
@@ -16,6 +16,10 @@ It is not the authoritative location for repository governance, current target s
16
16
 
17
17
  ## Package identity
18
18
 
19
+ - canonical repository: `https://github.com/tigrbl/tigrbl`
20
+ - organization: `https://github.com/tigrbl`
21
+ - social: `https://discord.gg/K4YTAPapjR`
22
+ - package path: `https://github.com/tigrbl/tigrbl/tree/master/pkgs/engines/tigrbl_engine_membloom`
19
23
  - workspace path: `pkgs/engines/tigrbl_engine_membloom`
20
24
  - workspace class: engine package
21
25
  - implementation layout: `src/tigrbl_engine_membloom/`
@@ -4,7 +4,7 @@ build-backend = "hatchling.build"
4
4
 
5
5
  [project]
6
6
  name = "tigrbl_engine_membloom"
7
- version = "0.1.12.dev1"
7
+ version = "0.4.0.dev2"
8
8
  description = "Process-local Bloom filter engine plugin for Tigrbl with optional rotating TTL windows."
9
9
  readme = "README.md"
10
10
  license = "Apache-2.0"
@@ -20,8 +20,13 @@ classifiers = [
20
20
  ]
21
21
  dependencies = ["tigrbl>=0.3.0.dev4"]
22
22
 
23
+
23
24
  [project.urls]
24
- Homepage = "https://github.com/swarmauri/swarmauri-sdk"
25
+ Organization = "https://github.com/tigrbl"
26
+ Discord = "https://discord.gg/K4YTAPapjR"
27
+ Homepage = "https://github.com/tigrbl/tigrbl"
28
+ Repository = "https://github.com/tigrbl/tigrbl/tree/master/pkgs/engines/tigrbl_engine_membloom"
29
+ Issues = "https://github.com/tigrbl/tigrbl/issues"
25
30
 
26
31
  [project.entry-points."tigrbl.engine"]
27
32
  membloom = "tigrbl_engine_membloom.plugin:register"
@@ -1,6 +1,6 @@
1
1
  """tigrbl_engine_membloom package."""
2
2
 
3
3
  __all__ = ["__version__", "register"]
4
- __version__ = "0.1.0"
4
+ __version__ = "0.4.0.dev1"
5
5
 
6
6
  from .plugin import register