pyproject.toml•2.52 kB
[project]
name = "continuo"
version = "0.1.0"
description = "Persistent memory and hierarchical compression system with MCP integration"
readme = "README.md"
requires-python = ">=3.9"
license = { text = "AGPL-3.0-or-later" }
authors = [
{ name = "D.D." },
{ name = "Gustavo Porto", email = "gustavo@shigoto.me" }
]
keywords = ["memory", "mcp", "rag", "vector-database", "semantic-search", "embeddings"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+)",
"License :: Other/Proprietary License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Software Development :: Libraries :: Python Modules",
]
dependencies = [
"mcp>=1.0.0",
"chromadb>=0.4.0",
"sentence-transformers>=2.2.0",
"numpy>=1.24.0",
"pydantic>=2.0.0",
"anyio>=4.0.0",
]
[project.optional-dependencies]
openai = ["openai>=1.0.0"]
dev = [
"pytest>=7.0.0",
"pytest-asyncio>=0.21.0",
"anyio[trio]>=4.0.0",
"trio>=0.22.0",
"black>=23.0.0",
"ruff>=0.1.0",
"mypy>=1.0.0",
]
[project.urls]
Homepage = "https://github.com/GtOkAi/continuo-memory-mcp"
Repository = "https://github.com/GtOkAi/continuo-memory-mcp"
Documentation = "https://github.com/GtOkAi/continuo-memory-mcp#readme"
Issues = "https://github.com/GtOkAi/continuo-memory-mcp/issues"
[project.scripts]
continuo-server = "continuo.mcp_memory_server:main"
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
where = ["."]
include = ["continuo*"]
[tool.black]
line-length = 100
target-version = ["py39"]
[tool.ruff]
line-length = 100
target-version = "py39"
[tool.ruff.lint]
select = [
"E", # pycodestyle errors
"F", # pyflakes
"I", # isort
"UP", # pyupgrade
]
[tool.ruff.lint.per-file-ignores]
"examples/**/*.py" = ["E501"] # Allow long lines in examples
[tool.pytest.ini_options]
testpaths = ["tests"]
python_files = ["test_*.py"]
python_classes = ["Test*"]
python_functions = ["test_*"]
addopts = "-v --strict-markers"
[tool.mypy]
python_version = "3.9"
warn_return_any = true
warn_unused_configs = true
disallow_untyped_defs = false