♻️Tidy up pyproject.toml

This commit is contained in:
Brian Wiborg 2025-09-27 12:32:03 +02:00
parent 0baedd94d9
commit 8d486001b6
No known key found for this signature in database
2 changed files with 55 additions and 50 deletions

View file

@ -9,28 +9,30 @@ authors = [
]
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)",
"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.group.dev.dependencies]
ipython = ">=9.5.0,<10.0.0"
[project.optional-dependencies]
auth = ["passlib", "pyjwt", "crypto", "argon2-cffi", "python-multipart"]
[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"
packages = [ { include = "ohmyapi", from = "src" } ]
[project.scripts]
ohmyapi = "ohmyapi.cli:app"