Skip to content

Commit

Permalink
Merge pull request #2 from Achronus/v0.1.14
Browse files Browse the repository at this point in the history
V0.1.14 - Added `add-routeset` command
  • Loading branch information
Achronus authored Sep 27, 2024
2 parents 20ed102 + 5ba463f commit 6c246c0
Show file tree
Hide file tree
Showing 37 changed files with 5,041 additions and 715 deletions.
798 changes: 407 additions & 391 deletions poetry.lock

Large diffs are not rendered by default.

32 changes: 16 additions & 16 deletions pyproject.toml
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 = [
Expand All @@ -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"]
Expand Down
Loading

0 comments on commit 6c246c0

Please sign in to comment.