-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
58 lines (50 loc) · 1.17 KB
/
Copy pathpyproject.toml
File metadata and controls
58 lines (50 loc) · 1.17 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "gmemory"
version = "0.2.0"
description = "Local Agent Persistent Memory System"
readme = "README.md"
requires-python = ">=3.10"
license = "MIT"
dependencies = [
"sqlite-vec>=0.1.1",
"fastembed>=0.3.0",
"numpy>=1.24.0",
"click>=8.0.0",
"mcp>=1.0.0",
"fastapi>=0.116.1",
"uvicorn>=0.35.0",
]
[project.scripts]
gmemory = "gmemory.__main__:main"
gmemory-mcp = "gmemory.mcp:main"
gmemory-web = "gmemory.webapi:main"
gmemory-service = "gmemory.service:main"
[tool.hatch.build.targets.wheel]
packages = ["gmemory"]
[dependency-groups]
dev = [
"pytest>=9.0.2",
"mypy>=1.0.0",
]
[tool.pytest.ini_options]
testpaths = ["tests"]
python_files = ["test_*.py"]
python_functions = ["test_*"]
[tool.mypy]
python_version = "3.10"
warn_return_any = true
warn_unused_ignores = true
disallow_untyped_defs = false
disallow_incomplete_defs = false
check_untyped_defs = true
strict_optional = true
ignore_missing_imports = false
[[tool.mypy.overrides]]
module = "fastembed.*"
ignore_missing_imports = true
[[tool.mypy.overrides]]
module = "sqlite_vec.*"
ignore_missing_imports = true