-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpyproject.toml
More file actions
39 lines (35 loc) · 883 Bytes
/
pyproject.toml
File metadata and controls
39 lines (35 loc) · 883 Bytes
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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "causal-os"
version = "0.1.2"
description = "Causal memory for AI agents"
readme = "README.md"
authors = [{ name = "Palguna", email = "palguna@causalos.xyz" }]
license = { text = "MIT" }
requires-python = ">=3.10"
dependencies = [
"pydantic>=2.0",
"networkx>=3.0",
"rich>=13.0",
"ksuid>=0.0.0",
"onnxruntime>=1.15.0",
"numpy>=1.24.0",
"typing-extensions>=4.0",
]
[project.optional-dependencies]
langchain = ["langchain-core>=0.2"]
langgraph = ["langgraph>=0.1"]
crewai = ["crewai>=0.1"]
serve = ["fastapi>=0.100.0", "uvicorn>=0.20.0"]
all = [
"langchain-core>=0.2",
"langgraph>=0.1",
"crewai>=0.1"
]
[project.scripts]
causal-os = "causal_memory.cli.main:main"
[tool.setuptools.packages.find]
where = ["."]
include = ["causal_memory*"]