30 lines
697 B
TOML
30 lines
697 B
TOML
[build-system]
|
|
requires = ["setuptools>=61.0", "wheel"]
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
[project]
|
|
name = "xiaoheideplog"
|
|
version = "0.1.0"
|
|
description = "MCP server: Milvus + Azure OpenAI embeddings for project memory"
|
|
readme = "README.md"
|
|
requires-python = ">=3.11"
|
|
license = { text = "MIT" }
|
|
dependencies = [
|
|
"mcp>=1.26.0",
|
|
"pymilvus>=2.4.0,<2.5",
|
|
"openai>=1.40.0",
|
|
"setuptools>=61,<70",
|
|
"milvus-model>=0.2.12",
|
|
]
|
|
|
|
[project.optional-dependencies]
|
|
migrate = ["redis>=5.0.0"]
|
|
dev = ["pytest>=8.0"]
|
|
|
|
[project.scripts]
|
|
xiaoheideplog-mcp = "xiaoheideplog.server:run"
|
|
xiaoheideplog-migrate-redis = "xiaoheideplog.migrate_redis:main"
|
|
|
|
[tool.setuptools.packages.find]
|
|
where = ["src"]
|