Add initial SQLmem package structure with SQL parser, cache manager, column registry, and tests

This commit is contained in:
Jan Doubravský
2026-06-01 16:44:25 +02:00
parent 54879ef9d0
commit 74772cee4a
18 changed files with 835 additions and 0 deletions
+27
View File
@@ -0,0 +1,27 @@
[project]
name = "sqlmem"
version = "0.1.0"
description = ""
authors = [
{name = "jan.doubravsky@gmail.com"}
]
readme = "README.md"
requires-python = ">=3.14,<3.15"
dependencies = [
"sqlglot (>=30.8.0,<31.0.0)",
"sqlalchemy (>=2.0.50,<3.0.0)",
"loguru (>=0.7.3,<0.8.0)",
"python-dotenv (>=1.2.2,<2.0.0)"
]
[build-system]
requires = ["poetry-core>=2.0.0,<3.0.0"]
build-backend = "poetry.core.masonry.api"
[dependency-groups]
dev = [
"pytest (>=9.0.3,<10.0.0)",
"ruff (>=0.15.15,<0.16.0)",
"mypy (>=2.1.0,<3.0.0)"
]