mcp-sqlite-memory-bank 1.1.0__tar.gz → 1.1.1__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.
Files changed (18) hide show
  1. {mcp_sqlite_memory_bank-1.1.0/src/mcp_sqlite_memory_bank.egg-info → mcp_sqlite_memory_bank-1.1.1}/PKG-INFO +24 -25
  2. {mcp_sqlite_memory_bank-1.1.0 → mcp_sqlite_memory_bank-1.1.1}/README.md +23 -24
  3. {mcp_sqlite_memory_bank-1.1.0 → mcp_sqlite_memory_bank-1.1.1}/pyproject.toml +1 -1
  4. {mcp_sqlite_memory_bank-1.1.0 → mcp_sqlite_memory_bank-1.1.1/src/mcp_sqlite_memory_bank.egg-info}/PKG-INFO +24 -25
  5. {mcp_sqlite_memory_bank-1.1.0 → mcp_sqlite_memory_bank-1.1.1}/LICENSE +0 -0
  6. {mcp_sqlite_memory_bank-1.1.0 → mcp_sqlite_memory_bank-1.1.1}/MANIFEST.in +0 -0
  7. {mcp_sqlite_memory_bank-1.1.0 → mcp_sqlite_memory_bank-1.1.1}/setup.cfg +0 -0
  8. {mcp_sqlite_memory_bank-1.1.0 → mcp_sqlite_memory_bank-1.1.1}/src/mcp_sqlite_memory_bank/__init__.py +0 -0
  9. {mcp_sqlite_memory_bank-1.1.0 → mcp_sqlite_memory_bank-1.1.1}/src/mcp_sqlite_memory_bank/py.typed +0 -0
  10. {mcp_sqlite_memory_bank-1.1.0 → mcp_sqlite_memory_bank-1.1.1}/src/mcp_sqlite_memory_bank/server.py +0 -0
  11. {mcp_sqlite_memory_bank-1.1.0 → mcp_sqlite_memory_bank-1.1.1}/src/mcp_sqlite_memory_bank/types.py +0 -0
  12. {mcp_sqlite_memory_bank-1.1.0 → mcp_sqlite_memory_bank-1.1.1}/src/mcp_sqlite_memory_bank/utils.py +0 -0
  13. {mcp_sqlite_memory_bank-1.1.0 → mcp_sqlite_memory_bank-1.1.1}/src/mcp_sqlite_memory_bank.egg-info/SOURCES.txt +0 -0
  14. {mcp_sqlite_memory_bank-1.1.0 → mcp_sqlite_memory_bank-1.1.1}/src/mcp_sqlite_memory_bank.egg-info/dependency_links.txt +0 -0
  15. {mcp_sqlite_memory_bank-1.1.0 → mcp_sqlite_memory_bank-1.1.1}/src/mcp_sqlite_memory_bank.egg-info/requires.txt +0 -0
  16. {mcp_sqlite_memory_bank-1.1.0 → mcp_sqlite_memory_bank-1.1.1}/src/mcp_sqlite_memory_bank.egg-info/top_level.txt +0 -0
  17. {mcp_sqlite_memory_bank-1.1.0 → mcp_sqlite_memory_bank-1.1.1}/tests/test_api.py +0 -0
  18. {mcp_sqlite_memory_bank-1.1.0 → mcp_sqlite_memory_bank-1.1.1}/tests/test_server.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: mcp_sqlite_memory_bank
3
- Version: 1.1.0
3
+ Version: 1.1.1
4
4
  Summary: A dynamic, agent/LLM-friendly SQLite memory bank for MCP servers.
5
5
  Author-email: Robert Meisner <robert@catchit.pl>
6
6
  License-Expression: MIT
@@ -19,30 +19,6 @@ Provides-Extra: test
19
19
  Requires-Dist: pytest; extra == "test"
20
20
  Dynamic: license-file
21
21
 
22
- ## Development Setup
23
-
24
- To ensure code quality and consistent style, this project uses `flake8` and `pre-commit` hooks.
25
-
26
- **Install development dependencies:**
27
-
28
- ```sh
29
- pip install -r requirements.txt
30
- ```
31
-
32
- **Enable pre-commit hooks (recommended):**
33
-
34
- ```sh
35
- pre-commit install
36
- ```
37
-
38
- This will automatically run `flake8` on staged files before every commit. To manually check all files:
39
-
40
- ```sh
41
- pre-commit run --all-files
42
- ```
43
-
44
- If you see lint errors, fix them before committing. You can configure linting rules in the `.flake8` file.
45
-
46
22
  # mcp_sqlite_memory_bank
47
23
 
48
24
  ![PyPI](https://img.shields.io/pypi/v/mcp_sqlite_memory_bank)
@@ -447,6 +423,29 @@ pytest --import-mode=importlib
447
423
 
448
424
  ---
449
425
 
426
+ ## Development Setup
427
+
428
+ To ensure code quality and consistent style, this project uses `flake8` and `pre-commit` hooks.
429
+
430
+ **Install development dependencies:**
431
+
432
+ ```sh
433
+ pip install -r requirements.txt
434
+ ```
435
+
436
+ **Enable pre-commit hooks (recommended):**
437
+
438
+ ```sh
439
+ pre-commit install
440
+ ```
441
+
442
+ This will automatically run `flake8` on staged files before every commit. To manually check all files:
443
+
444
+ ```sh
445
+ pre-commit run --all-files
446
+ ```
447
+
448
+ If you see lint errors, fix them before committing. You can configure linting rules in the `.flake8` file.
450
449
 
451
450
  ## Support & Contact
452
451
 
@@ -1,27 +1,3 @@
1
- ## Development Setup
2
-
3
- To ensure code quality and consistent style, this project uses `flake8` and `pre-commit` hooks.
4
-
5
- **Install development dependencies:**
6
-
7
- ```sh
8
- pip install -r requirements.txt
9
- ```
10
-
11
- **Enable pre-commit hooks (recommended):**
12
-
13
- ```sh
14
- pre-commit install
15
- ```
16
-
17
- This will automatically run `flake8` on staged files before every commit. To manually check all files:
18
-
19
- ```sh
20
- pre-commit run --all-files
21
- ```
22
-
23
- If you see lint errors, fix them before committing. You can configure linting rules in the `.flake8` file.
24
-
25
1
  # mcp_sqlite_memory_bank
26
2
 
27
3
  ![PyPI](https://img.shields.io/pypi/v/mcp_sqlite_memory_bank)
@@ -426,6 +402,29 @@ pytest --import-mode=importlib
426
402
 
427
403
  ---
428
404
 
405
+ ## Development Setup
406
+
407
+ To ensure code quality and consistent style, this project uses `flake8` and `pre-commit` hooks.
408
+
409
+ **Install development dependencies:**
410
+
411
+ ```sh
412
+ pip install -r requirements.txt
413
+ ```
414
+
415
+ **Enable pre-commit hooks (recommended):**
416
+
417
+ ```sh
418
+ pre-commit install
419
+ ```
420
+
421
+ This will automatically run `flake8` on staged files before every commit. To manually check all files:
422
+
423
+ ```sh
424
+ pre-commit run --all-files
425
+ ```
426
+
427
+ If you see lint errors, fix them before committing. You can configure linting rules in the `.flake8` file.
429
428
 
430
429
  ## Support & Contact
431
430
 
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "mcp_sqlite_memory_bank"
7
- version = "1.1.0"
7
+ version = "1.1.1"
8
8
  description = "A dynamic, agent/LLM-friendly SQLite memory bank for MCP servers."
9
9
  authors = [
10
10
  { name="Robert Meisner", email="robert@catchit.pl" }
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: mcp_sqlite_memory_bank
3
- Version: 1.1.0
3
+ Version: 1.1.1
4
4
  Summary: A dynamic, agent/LLM-friendly SQLite memory bank for MCP servers.
5
5
  Author-email: Robert Meisner <robert@catchit.pl>
6
6
  License-Expression: MIT
@@ -19,30 +19,6 @@ Provides-Extra: test
19
19
  Requires-Dist: pytest; extra == "test"
20
20
  Dynamic: license-file
21
21
 
22
- ## Development Setup
23
-
24
- To ensure code quality and consistent style, this project uses `flake8` and `pre-commit` hooks.
25
-
26
- **Install development dependencies:**
27
-
28
- ```sh
29
- pip install -r requirements.txt
30
- ```
31
-
32
- **Enable pre-commit hooks (recommended):**
33
-
34
- ```sh
35
- pre-commit install
36
- ```
37
-
38
- This will automatically run `flake8` on staged files before every commit. To manually check all files:
39
-
40
- ```sh
41
- pre-commit run --all-files
42
- ```
43
-
44
- If you see lint errors, fix them before committing. You can configure linting rules in the `.flake8` file.
45
-
46
22
  # mcp_sqlite_memory_bank
47
23
 
48
24
  ![PyPI](https://img.shields.io/pypi/v/mcp_sqlite_memory_bank)
@@ -447,6 +423,29 @@ pytest --import-mode=importlib
447
423
 
448
424
  ---
449
425
 
426
+ ## Development Setup
427
+
428
+ To ensure code quality and consistent style, this project uses `flake8` and `pre-commit` hooks.
429
+
430
+ **Install development dependencies:**
431
+
432
+ ```sh
433
+ pip install -r requirements.txt
434
+ ```
435
+
436
+ **Enable pre-commit hooks (recommended):**
437
+
438
+ ```sh
439
+ pre-commit install
440
+ ```
441
+
442
+ This will automatically run `flake8` on staged files before every commit. To manually check all files:
443
+
444
+ ```sh
445
+ pre-commit run --all-files
446
+ ```
447
+
448
+ If you see lint errors, fix them before committing. You can configure linting rules in the `.flake8` file.
450
449
 
451
450
  ## Support & Contact
452
451