-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
69 lines (61 loc) · 1.89 KB
/
pyproject.toml
File metadata and controls
69 lines (61 loc) · 1.89 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
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[project]
name = "pixelmemory"
version = "0.1.0"
description = "Multimodal Memory for AI Agents and MCP."
license = "Apache-2.0"
readme = "README.md"
requires-python = ">=3.10,<4.0"
authors = [{ name = "Pixeltable, Inc.", email = "contact@pixeltable.com>" }]
keywords = [
"data-science", "machine-learning", "database", "ai", "computer-vision",
"chatbot", "ml", "artificial-intelligence", "feature-engineering", "multimodal",
"mlops", "feature-store", "vector-database", "llm", "genai"
]
classifiers = [
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: Apache Software License",
"Operating System :: MacOS",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Database",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Software Development :: Libraries :: Python Modules",
]
dependencies = [
"pixeltable>=0.4.0",
"sentence-transformers (>=4.1.0)",
]
[project.urls]
homepage = "https://pixeltable.com/"
repository = "https://github.com/pixeltable/pixelmemory"
documentation = "https://docs.pixeltable.com/docs/libraries/pixelmemory"
[tool.poetry]
requires-poetry = ">=2.0"
[tool.poetry.group.dev]
optional = true
[tool.poetry.group.dev.dependencies]
coverage = "^7.4"
# type checking
mypy = "^1.13.0"
# linting
ruff = "^0.9.7"
# mkdocs-related
mkdocs = "^1.6.0"
mkdocs-material = "^9.5.23"
mkdocstrings-python = "^1.10.2"
black = ">=24.4" # Needed for mkdocs
[tool.uv.sources]
pixelmemory = { workspace = true }
[dependency-groups]
dev = [
"pixelmemory",
"ruff>=0.12.2",
]