-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
55 lines (48 loc) · 1.31 KB
/
pyproject.toml
File metadata and controls
55 lines (48 loc) · 1.31 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
[project]
name = "memwing"
version = "0.1.5"
description = "MemWing memory system"
requires-python = ">=3.11"
license = "Apache-2.0"
license-files = ["LICENSE"]
dependencies = [
"fastapi>=0.115.0",
"httpx>=0.28.0",
"kuzu>=0.11.3",
"neo4j>=5.26.0",
"numpy>=2.0.0",
"openai>=1.60.0",
"psycopg[binary,pool]>=3.2.0",
"pydantic>=2.7.0",
"python-dotenv>=1.0.0",
"qdrant-client>=1.14.0",
"tenacity>=9.0.0",
"typing-extensions>=4.12.0",
"uvicorn>=0.34.0",
]
[dependency-groups]
dev = [
"pytest>=8.2.0",
"ruff>=0.8.0",
]
[build-system]
requires = ["setuptools>=77.0.0", "wheel"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
where = [".", "memwing/infrastructure/graph"]
include = ["memwing*", "graphiti_core*"]
exclude = ["memwing.infrastructure.graph.graphiti_core*"]
[tool.setuptools.package-data]
"memwing.integrations.openclaw" = ["package.json", "openclaw.plugin.json", "dist/**", "dist/*.js"]
[project.scripts]
memwing = "memwing.cli:main"
memwing-api = "memwing.api_runner:main"
memwing-pipeline = "memwing.pipeline_runner:main"
memwing-runtime = "memwing.runtime_runner:main"
memwing-worker = "memwing.worker_runner:main"
[tool.pytest.ini_options]
testpaths = ["tests"]
pythonpath = [".", "memwing/infrastructure/graph"]
[tool.ruff]
line-length = 100
target-version = "py311"