-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #2 from Achronus/v0.1.14
V0.1.14 - Added `add-routeset` command
- Loading branch information
Showing
37 changed files
with
5,041 additions
and
715 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,13 @@ | ||
[tool.poetry] | ||
name = "zentra_api" | ||
version = "0.1.13" | ||
version = "0.1.14" | ||
description = "A CLI tool for building FastAPI apps faster." | ||
authors = ["Ryan Partridge <[email protected]>"] | ||
license = "MIT License" | ||
readme = "README.md" | ||
repository = "https://github.com/Achronus/zentra-api" | ||
# homepage = "https://zentra.achronus.dev/" | ||
# documentation = "https://zentra.achronus.dev/" | ||
homepage = "https://zentra.achronus.dev/api" | ||
documentation = "https://zentra.achronus.dev/api" | ||
|
||
# https://pypi.org/classifiers/ | ||
classifiers = [ | ||
|
@@ -30,23 +30,23 @@ zentra-api = "zentra_api.cli.main:app" | |
[tool.poetry.dependencies] | ||
python = "^3.12" | ||
typer = "^0.12" | ||
fastapi = { extras = ["standard"], version = "^0.112.0" } | ||
pydantic = "^2.8.2" | ||
toml = "^0.10.2" | ||
sqlalchemy = "^2.0.31" | ||
bcrypt = "^4.2.0" | ||
inflect = "^7.3.1" | ||
fastapi = { extras = ["standard"], version = "^0.114" } | ||
pydantic = "^2.9" | ||
toml = "^0.10" | ||
sqlalchemy = "^2.0" | ||
bcrypt = "^4.2" | ||
inflect = "^7.4" | ||
|
||
[tool.poetry.group.dev.dependencies] | ||
pytest = "^8.2" | ||
responses = "^0.25.3" | ||
pytest-cov = "^4.1" | ||
psycopg2 = "^2.9.9" | ||
pyjwt = "^2.8.0" | ||
alembic = "^1.13.2" | ||
pytest = "^8.3" | ||
responses = "^0.25" | ||
pytest-cov = "^5.0" | ||
psycopg2 = "^2.9" | ||
pyjwt = "^2.9" | ||
alembic = "^1.13" | ||
|
||
[tool.poetry.group.ci.dependencies] | ||
git-cliff = "^2.4.0" | ||
git-cliff = "^2.5" | ||
|
||
[build-system] | ||
requires = ["poetry-core"] | ||
|
Oops, something went wrong.