-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
41 lines (38 loc) · 800 Bytes
/
pyproject.toml
File metadata and controls
41 lines (38 loc) · 800 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
40
41
[build-system]
requires = ["maturin>=1.7,<2.0"]
build-backend = "maturin"
[project]
name = "memory_core"
version = "0.1.0"
description = "Rust-based memory engine for AI, exposed to Python via PyO3"
requires-python = ">=3.12"
authors = [
{ name = "Justin" }
]
license = { text = "MIT" }
classifiers = [
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Rust",
]
dependencies = [
"numpy>=2.3.4",
"pydantic>=2.12.4",
"redis>=7.0.1",
"sqlalchemy>=2.0.44",
"mysql-connector-python>=9.4.0",
]
[project.optional-dependencies]
dev = [
"maturin>=1.10.1",
"pytest>=9.0.1",
"matplotlib>=3.10.7",
]
postgres = [
"psycopg[binary]>=3.2.0",
]
ai = [
"pydantic-ai>=0.9",
]
[tool.maturin]
module-name = "memory_core"