🎉 Let's go!

This commit is contained in:
Brian Wiborg 2025-09-27 00:29:45 +02:00
commit 6f85f24232
No known key found for this signature in database
24 changed files with 2563 additions and 0 deletions

34
pyproject.toml Normal file
View file

@ -0,0 +1,34 @@
[project]
name = "ohmyapi"
version = "0.1.0"
description = "A Django-like but async web-framework based on FastAPI and TortoiseORM."
authors = [
{name = "Brian Wiborg", email = "me@brianwib.org"}
]
readme = "README.md"
requires-python = ">=3.13"
dependencies = [
"typer (>=0.19.1,<0.20.0)",
"jinja2 (>=3.1.6,<4.0.0)",
"fastapi (>=0.117.1,<0.118.0)",
"tortoise-orm (>=0.25.1,<0.26.0)",
"aerich (>=0.9.1,<0.10.0)",
"uvicorn (>=0.36.0,<0.37.0)",
"ipython (>=9.5.0,<10.0.0)",
"passlib (>=1.7.4,<2.0.0)",
"pyjwt (>=2.10.1,<3.0.0)",
"python-multipart (>=0.0.20,<0.0.21)",
"crypto (>=1.4.1,<2.0.0)",
"argon2-cffi (>=25.1.0,<26.0.0)",
]
[tool.poetry]
packages = [{include = "ohmyapi", from = "src"}]
[tool.poetry.scripts]
ohmyapi = "ohmyapi.cli:main"
[build-system]
requires = ["poetry-core>=2.0.0,<3.0.0"]
build-backend = "poetry.core.masonry.api"