-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
48 lines (42 loc) · 1.21 KB
/
pyproject.toml
File metadata and controls
48 lines (42 loc) · 1.21 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "goodmem-semantic-kernel"
version = "0.2.0"
description = "GoodMem connector for Microsoft Semantic Kernel"
readme = "README.md"
license = { text = "MIT" }
requires-python = ">=3.10"
dependencies = [
"httpx>=0.27",
"pydantic>=2.0",
"pydantic-settings>=2.0",
"semantic-kernel>=1.0",
]
keywords = ["semantic-kernel", "goodmem", "memory", "vector-store", "llm", "agents"]
classifiers = [
"Programming Language :: Python :: 3",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
]
[project.optional-dependencies]
dev = [
"pytest>=8.0",
"pytest-asyncio>=0.23",
"pytest-mock>=3.12",
]
[project.urls]
Homepage = "https://github.com/PAIR-Systems-Inc/goodmem-semantic-kernel"
Repository = "https://github.com/PAIR-Systems-Inc/goodmem-semantic-kernel"
Documentation = "https://goodmem.ai/docs"
[tool.pytest.ini_options]
asyncio_mode = "auto"
testpaths = ["python/tests"]
markers = [
"integration: marks tests as integration tests (require a live GoodMem server)",
]
[tool.hatch.build]
sources = ["python"]
[tool.hatch.build.targets.wheel]
packages = ["goodmem_semantic_kernel"]
dev-mode-dirs = ["python"]