This commit is contained in:
Waylon Walker 2023-06-06 09:57:21 -05:00
parent 6b1c60a550
commit 839cbd0dc0
No known key found for this signature in database
GPG key ID: 66E2BF2B4190EFE4
17 changed files with 213 additions and 35 deletions

View file

@ -25,16 +25,19 @@ classifiers = [
]
dependencies = [
"anyconfig",
"trogon",
"engorgio",
"fastapi",
"httpx",
"passlib[bcrypt]",
"polyfactory",
"psycopg2",
"python-jose[cryptography]",
"python-multipart",
"rich",
"sqlmodel",
"textual",
"toml",
"trogon",
"typer",
"uvicorn[standard]",
]
@ -49,6 +52,7 @@ Changelog = "https://github.com/waylonwalker/learn-sql-model"
[project.scripts]
learn-sql-model = "learn_sql_model.cli.app:app"
lsm = "learn_sql_model.cli.app:app"
[tool.hatch.version]
path = "learn_sql_model/__about__.py"
@ -82,6 +86,7 @@ lint-test = [
"cov",
]
test-lint = "lint-test"
api = "learn-sql-model api run"
[[tool.hatch.envs.test.matrix]]
python = ["37", "38", "39", "310", "311"]