Removed notes.db

This commit is contained in:
Garvan
2024-11-19 11:05:20 -05:00
parent 1896a0aa87
commit 576ce79acd
6 changed files with 574 additions and 0 deletions

16
src/sqlite/pyproject.toml Normal file
View File

@@ -0,0 +1,16 @@
[project]
name = "sqlite"
version = "0.1.0"
description = "A simple SQLite MCP server"
readme = "README.md"
requires-python = ">=3.11"
dependencies = [
"mcp>=0.9.0",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project.scripts]
sqlite = "sqlite:main"