-
Notifications
You must be signed in to change notification settings - Fork 22
Expand file tree
/
Copy pathpyproject.toml
More file actions
65 lines (59 loc) · 1.56 KB
/
Copy pathpyproject.toml
File metadata and controls
65 lines (59 loc) · 1.56 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
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "openbrain"
version = "1.0.2"
description = "Shared personal memory, agent continuity, and actionable context"
readme = "README.md"
requires-python = ">=3.11"
license = "MIT"
authors = [
{name = "Ben Clawbot"}
]
keywords = ["memory", "agents", "semantic-search", "mcp", "postgres", "pgvector"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
dependencies = [
"psycopg2-binary>=2.9.9",
"sqlalchemy>=2.0.0",
"asyncpg>=0.29.0",
"pgvector>=0.2.0",
"pyyaml>=6.0.1",
"python-dotenv>=1.0.0",
"fastapi>=0.109.0",
"uvicorn>=0.27.0",
"streamlit>=1.31.0",
"pandas>=2.2.0",
"matplotlib>=3.8.0",
"requests>=2.31.0",
"httpx>=0.26.0",
"pydantic>=2.5.0",
"pydantic-settings>=2.1.0",
"nltk>=3.8.1",
"mcp>=1.0.0,<2.0.0",
"packaging>=24.0",
]
[project.optional-dependencies]
dev = [
"pytest>=7.4.0",
"pytest-asyncio>=0.23.0",
"black>=24.1.0",
"ruff>=0.2.0",
"build>=1.2.0",
]
[project.scripts]
openbrain = "src.cli:main"
openbrain-adapters = "src.cli.adapters:main"
openbrain-release-check = "src.release.readiness:main"
[tool.setuptools.packages.find]
where = ["."]
include = ["src*", "config*"]
[tool.setuptools.package-data]
config = ["*.yaml", "*.yml"]
"src.db" = ["migrations/*.sql"]
"src.openbrain_hermes_plugin" = ["plugin.yaml", "README.md"]