-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
62 lines (57 loc) · 2.07 KB
/
pyproject.toml
File metadata and controls
62 lines (57 loc) · 2.07 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
[tool.poetry]
name = "grizabella"
version = "0.6.1"
description = "A tri-layer memory framework for LLM solutions."
authors = ["Grizabella Project Contributors <contributors@example.com>"]
readme = "README.md"
license = "MIT"
homepage = "https://github.com/pwilkin/grizabella"
repository = "https://github.com/pwilkin/grizabella"
documentation = "https://pwilkin.github.io/grizabella"
keywords = ["python", "llm", "memory", "vector-database", "graph-database", "sqlite", "lancedb", "real_ladybug", "pyside6", "sentence-transformers", "fastmcp", "ai", "multi-modal"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Operating System :: OS Independent",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Database",
]
packages = [{include = "grizabella"}]
[tool.poetry.dependencies]
python = ">=3.12, <3.14" # Specify a compatible Python version
pydantic = "^2.11.5" # Add pydantic
lancedb = "^0.24.0"
sentence-transformers = "^3.0.0"
real_ladybug = "^0.12.2"
pandas = "^2.3.0" # Added for real_ladybug adapter query result handling
fastmcp = "^2.10.6"
PySide6 = "^6.7.0"
optimum = "^1.26.1"
qt_material = "^2.14"
litellm = "^1.74.4" # For OpenRouter integration
pytest-asyncio = "^1.1.0"
psutil = "^7.0.0"
kuzu = "0.10.1"
[tool.poetry.group.dev.dependencies]
pytest = "^8.4.1"
pylint = "^3.3.7" # Or your desired version
# Add other dev dependencies here if needed
mkdocs = "^1.6.0"
mkdocs-material = "^9.5.0"
sphinx = "^8.2.3"
sphinx-rtd-theme = "^3.0.2"
mkdocstrings = {extras = ["python"], version = "^0.25.1"}
[tool.poetry.scripts]
grizabella-ui = "grizabella.ui.app:main"
grizabella-mcp = "grizabella.mcp.server:main"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.ruff]
line-length = 240