First commit.
This commit is contained in:
commit
a3e676a0b0
13 changed files with 346 additions and 0 deletions
18
pyproject.toml
Normal file
18
pyproject.toml
Normal 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"]
|
||||
Loading…
Add table
Add a link
Reference in a new issue