-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
56 lines (49 loc) · 1.62 KB
/
pyproject.toml
File metadata and controls
56 lines (49 loc) · 1.62 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
[build-system]
requires = ["setuptools>=68", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "flow-memory"
version = "0.2.0"
description = "Open-source cognitive agent OS with dual-stream perception, layered memory, safety gates, and economic autonomy primitives."
readme = "README.md"
requires-python = ">=3.10"
license = { text = "Apache-2.0" }
authors = [{ name = "Flow Memory Contributors" }]
keywords = ["agents", "memory", "ai", "cognitive-architecture", "blockchain", "safety"]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
dependencies = []
[project.optional-dependencies]
dev = ["pytest>=8.0", "ruff>=0.5", "mypy>=1.10"]
ml = ["torch>=2.2", "numpy>=1.26"]
memory = ["redis>=5.0", "qdrant-client>=1.9", "neo4j>=5.20"]
web3 = ["web3>=6.20", "eth-account>=0.11"]
langgraph = ["langgraph>=0.2"]
all = [
"torch>=2.2", "numpy>=1.26",
"redis>=5.0", "qdrant-client>=1.9", "neo4j>=5.20",
"web3>=6.20", "eth-account>=0.11", "langgraph>=0.2"
]
[project.scripts]
flow-memory = "flow_memory.cli:main"
[tool.setuptools.packages.find]
where = ["src"]
[tool.pytest.ini_options]
minversion = "8.0"
pythonpath = ["src"]
testpaths = ["tests"]
addopts = "-p no:ddtrace -p no:ddtrace.pytest_bdd -p no:ddtrace.pytest_benchmark"
[tool.ruff]
line-length = 110
target-version = "py310"
[tool.mypy]
python_version = "3.10"
strict = true
ignore_missing_imports = true