-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
91 lines (79 loc) · 2.34 KB
/
Copy pathpyproject.toml
File metadata and controls
91 lines (79 loc) · 2.34 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "memnet-llm"
dynamic = ["version"]
description = "In-memory working-memory graph CLI for LLM agents (goldfish brain scratch space)"
readme = "README.md"
requires-python = ">=3.11"
license = "MIT"
authors = [{ name = "MemNet contributors" }]
keywords = ["knowledge-graph", "llm", "cli", "memory", "agent", "working-memory"]
classifiers = [
"Development Status :: 3 - Alpha",
"Environment :: Console",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
]
dependencies = [
"pydantic>=2.10",
"rich>=13.9",
"typer>=0.15",
]
[project.urls]
Homepage = "https://github.com/chouswei/MemNet"
Repository = "https://github.com/chouswei/MemNet"
Changelog = "https://github.com/chouswei/MemNet/blob/master/CHANGELOG.md"
Documentation = "https://github.com/chouswei/MemNet/blob/master/LLM-GUIDE.md"
[project.optional-dependencies]
dev = [
"pytest>=8.3",
"pytest-cov>=6.0",
"ruff>=0.9",
]
mcp = [
"mcp>=1.2,<2",
]
novel-mcp = [
"mcp>=1.2,<2",
]
novel-mobile = [
"fastapi>=0.115",
"uvicorn[standard]>=0.32",
"mcp>=1.2,<2",
"google-auth>=2.0",
"PyJWT>=2.8",
]
[project.scripts]
memnet = "memnet.cli:main"
memnet-mcp = "memnet_mcp.server:main"
novel-mcp = "novel_mcp.server:main"
novel-mobile = "novel_mobile.server:main"
[tool.hatch.version]
path = "src/memnet/__init__.py"
[tool.hatch.build.targets.wheel]
packages = ["src/memnet", "src/memnet_mcp", "src/novel_mcp", "applications/novel_mobile"]
[tool.hatch.build.targets.wheel.sources]
"applications/novel_mobile" = "novel_mobile"
[tool.hatch.build.targets.sdist]
only-include = ["src/memnet", "src/memnet_mcp", "src/novel_mcp", "tests", "README.md", "LICENSE", "pyproject.toml"]
[tool.pytest.ini_options]
testpaths = ["tests"]
addopts = "-q"
pythonpath = ["src", "applications", "applications/novel_cursor"]
markers = [
"scheme(id): integration scheme identifier from plan S01-S115",
]
[tool.ruff]
target-version = "py311"
line-length = 100
src = ["src", "tests"]
[tool.ruff.lint]
select = ["E", "F", "I", "UP", "B"]
[tool.ruff.format]
quote-style = "double"