From 517d83adb8077706c39c37b4d70ecd9062afeaa5 Mon Sep 17 00:00:00 2001 From: 7000pctAUTO Date: Sun, 22 Mar 2026 16:00:48 +0000 Subject: [PATCH] Initial upload: Agentic Codebase Memory Manager v0.1.0 --- pyproject.toml | 70 ++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 70 insertions(+) create mode 100644 pyproject.toml diff --git a/pyproject.toml b/pyproject.toml new file mode 100644 index 0000000..4c2ffb4 --- /dev/null +++ b/pyproject.toml @@ -0,0 +1,70 @@ +[build-system] +requires = ["setuptools>=61.0", "wheel"] +build-backend = "setuptools.build_meta" + +[project] +name = "memory-manager" +version = "0.1.0" +description = "A centralized memory store for AI coding agents" +readme = "README.md" +requires-python = ">=3.11" +license = {text = "MIT"} +authors = [ + {name = "Agentic Team"} +] +keywords = ["ai", "coding", "memory", "agent", "codebase"] +classifiers = [ + "Development Status :: 3 - Alpha", + "Intended Audience :: Developers", + "License :: OSI Approved :: MIT License", + "Programming Language :: Python :: 3.11", + "Programming Language :: Python :: 3.12", +] + +dependencies = [ + "sqlalchemy>=2.0.25", + "click>=8.1.7", + "textual>=0.50.1", + "fastapi>=0.109.0", + "uvicorn>=0.27.0", + "aiosqlite>=0.19.0", + "pydantic>=2.5.3", + "httpx>=0.26.0", + "python-dotenv>=1.0.0", + "shellingham>=1.1.4", +] + +[project.optional-dependencies] +dev = [ + "pytest>=8.0.0", + "pytest-asyncio>=0.23.0", + "mypy>=1.8.0", + "ruff>=0.2.0", + "types-python-dotenv>=1.0.0", +] + +[project.scripts] +memory = "memory_manager.cli.main:cli" + +[tool.setuptools.packages.find] +where = ["src"] + +[tool.pytest.ini_options] +testpaths = ["tests"] +asyncio_mode = "auto" +python_files = ["test_*.py"] + +[tool.mypy] +python_version = "3.11" +warn_return_any = true +warn_unused_configs = true +ignore_missing_imports = true + +[tool.ruff] +target-version = "py311" +line-length = 100 +select = ["E", "F", "I", "N", "W", "UP"] +ignore = ["E501"] + +[tool.ruff.per-file-ignores] +"__init__.py" = ["F401"] \ No newline at end of file