Spaces:
Configuration error
Configuration error
File size: 2,046 Bytes
4d5727a e0e2e6c 4d5727a 12a6c9a 4d5727a 12a6c9a 4d5727a ba35a6d 4d5727a ba35a6d 4d5727a ba35a6d 4d5727a ba35a6d 4d5727a ba35a6d 4d5727a ba35a6d 4d5727a ba35a6d 4d5727a ba35a6d | 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 70 71 72 73 74 75 76 77 | [build-system]
requires = ["setuptools>=68", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "agentcache"
version = "0.9.8"
description = "A Python REST + WebSocket + MCP cache server for AI agents, backed by SQLite"
readme = "README.md"
authors = [
{ name = "Yash Wanjarwadkar", email = "yashwanjarwadkar@gmail.com" }
]
maintainers = [
{ name = "Yash Wanjarwadkar", email = "yashwanjarwadkar@gmail.com" }
]
license = { text = "MIT" }
requires-python = ">=3.10"
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"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 = [
"flask>=3.0.0",
"flask-sock>=0.7.0",
"requests>=2.31.0",
"python-dateutil>=2.8.2",
"huggingface_hub>=0.20.0",
"websockets>=12.0",
]
[project.optional-dependencies]
dev = [
"pytest>=8.0.0",
"hypothesis>=6.100.0",
"ruff>=0.3.0",
"twine>=5.0.0",
]
local-embeddings = [
"sentence-transformers>=2.7.0",
]
[project.urls]
Homepage = "https://github.com/Yash030/agentcache-python"
Repository = "https://github.com/Yash030/agentcache-python.git"
"Bug Tracker" = "https://github.com/Yash030/agentcache-python/issues"
Documentation = "https://github.com/Yash030/agentcache-python#readme"
[project.scripts]
agentcache = "agentcache.cli:main"
[tool.setuptools.packages.find]
where = ["src"]
include = ["agentcache*"]
[tool.setuptools.package-data]
"agentcache.viewer" = ["*.html", "*.svg", "*.js", "*.css"]
[tool.pytest.ini_options]
testpaths = ["tests"]
python_files = ["test_*.py"]
[tool.ruff]
line-length = 88
target-version = "py310"
[tool.ruff.lint]
select = ["E", "F", "I", "W"]
ignore = ["E501"]
|