28 lines
485 B
TOML
28 lines
485 B
TOML
[project]
|
|
name = "cognee-mcp"
|
|
version = "0.1.0"
|
|
description = "A MCP server project"
|
|
readme = "README.md"
|
|
requires-python = ">=3.10"
|
|
|
|
dependencies = [
|
|
"cognee",
|
|
"mcp==1.2.0",
|
|
]
|
|
|
|
[[project.authors]]
|
|
name = "Rita Aleksziev"
|
|
email = "rita@topoteretes.com"
|
|
|
|
[build-system]
|
|
requires = [ "hatchling", ]
|
|
build-backend = "hatchling.build"
|
|
|
|
[tool.hatch.build.targets.wheel]
|
|
packages = ["src"]
|
|
|
|
[tool.uv.sources]
|
|
cognee = { path = "../../cognee" }
|
|
|
|
[project.scripts]
|
|
cognee = "src:main"
|