First commit.

This commit is contained in:
Yaro Kasear 2025-08-26 09:01:15 -05:00
commit a3e676a0b0
13 changed files with 346 additions and 0 deletions

18
pyproject.toml Normal file
View file

@ -0,0 +1,18 @@
[project]
name = "crudkit"
version = "0.1.0"
description = "A Flask API for better SQLAlchemy usage."
requires-python = ">=3.9"
dependencies = [
"flask",
"flask_sqlalchemy",
"python-dotenv",
"Werkzeug"
]
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
packages = ["crudkit"]