-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpyproject.toml
More file actions
38 lines (32 loc) · 838 Bytes
/
pyproject.toml
File metadata and controls
38 lines (32 loc) · 838 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
[project]
name = "openexp"
version = "0.1.0"
description = "Hippocampus for AI agents — capture trajectories raw, grade only on terminal outcomes"
requires-python = ">=3.11"
license = "MIT"
readme = "README.md"
authors = [
{ name = "anthroos" },
]
dependencies = [
"qdrant-client>=1.13.0",
"fastembed>=0.4.0",
"python-dotenv>=1.0.0",
"pydantic>=2.0.0",
"pyyaml>=6.0",
]
[project.optional-dependencies]
enrichment = [
"anthropic>=0.45.0",
]
[project.scripts]
openexp = "openexp.cli:main"
openexp-mcp = "openexp.mcp_server:main"
[build-system]
requires = ["setuptools>=68.0"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
include = ["openexp*"]
exclude = ["tests*", "prompts*", "experiences*", "docs*", "scripts*", "benchmarks*"]
[tool.pytest.ini_options]
testpaths = ["tests"]