-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
102 lines (92 loc) · 2.41 KB
/
pyproject.toml
File metadata and controls
102 lines (92 loc) · 2.41 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
[build-system]
requires = ["setuptools>=68.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "ab"
version = "0.1.0"
description = "Atomic Blueprint - App-Dev Agent Memory Kernel. Give your AI agents a memory that actually remembers."
readme = "README.md"
requires-python = ">=3.10,<4.0"
license = {text = "MIT"}
authors = [
{name = "ab contributors"}
]
keywords = [
"ai",
"agent",
"memory",
"llm",
"development",
"cursor",
"assistant",
"recall",
"structured-memory",
"agent-memory",
]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Software Development :: Version Control",
"Typing :: Typed",
]
dependencies = [
"sqlalchemy>=2.0",
"greenlet>=3.0", # Required for SQLAlchemy async operations
"pydantic>=2.0",
"pyyaml>=6.0",
"aiosqlite>=0.19.0", # SQLite async support (default, no external DB needed)
]
[project.optional-dependencies]
postgresql = [
"asyncpg>=0.29",
"psycopg2-binary>=2.9",
]
migrations = ["alembic>=1.12"]
pgvector = ["pgvector>=0.2.0"]
s3 = ["boto3>=1.28.0"]
images = ["pillow>=10.0.0"]
full = [
"asyncpg>=0.29",
"psycopg2-binary>=2.9",
"alembic>=1.12",
]
dev = [
"pytest>=7.4",
"pytest-asyncio>=0.21",
"pytest-cov>=4.1",
"black>=23.0",
"ruff>=0.1",
"mypy>=1.5",
]
[project.urls]
Homepage = "https://github.com/hexcreator/ab"
Documentation = "https://github.com/hexcreator/ab/tree/main/docs"
Repository = "https://github.com/hexcreator/ab"
Issues = "https://github.com/hexcreator/ab/issues"
Changelog = "https://github.com/hexcreator/ab/blob/main/CHANGELOG.txt"
[tool.setuptools.packages.find]
where = ["."]
include = ["ab*"]
[tool.black]
line-length = 100
target-version = ['py310']
[tool.ruff]
line-length = 100
target-version = "py310"
[tool.mypy]
python_version = "3.10"
warn_return_any = true
warn_unused_configs = true
[tool.pytest.ini_options]
asyncio_mode = "auto"
testpaths = ["tests"]
python_files = ["test_*.py"]
python_classes = ["Test*"]
python_functions = ["test_*"]