-
Notifications
You must be signed in to change notification settings - Fork 23
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* migrate from poetry to uv
- Loading branch information
Showing
7 changed files
with
718 additions
and
1,240 deletions.
There are no files selected for viewing
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
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
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
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
This file was deleted.
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,33 +1,40 @@ | ||
[tool.poetry] | ||
[project] | ||
name = "fast-api-sqlalchemy-template" | ||
version = "0" | ||
description = "Async template on FastAPI and SQLAlchemy 2" | ||
authors = ["Artur Shiriev <[email protected]>"] | ||
readme = "README.md" | ||
requires-python = ">=3.12" | ||
authors = [ | ||
{ email = "[email protected]" }, | ||
{ name = "Artur Shiriev"} | ||
] | ||
license = "MIT License" | ||
dependencies = [ | ||
"fastapi>=0.76", | ||
"advanced-alchemy", | ||
"pydantic-settings", | ||
"granian", | ||
"that-depends", | ||
# database | ||
"alembic", | ||
"psycopg2", | ||
"sqlalchemy", | ||
"asyncpg", | ||
] | ||
|
||
|
||
[tool.poetry.dependencies] | ||
python = "3.12.*" | ||
fastapi = ">=0.76" | ||
advanced-alchemy = "*" | ||
pydantic-settings = "*" | ||
granian = "*" | ||
that-depends = "*" | ||
# database | ||
alembic = "*" | ||
psycopg2 = "*" | ||
sqlalchemy = "*" | ||
asyncpg = "*" | ||
|
||
[tool.poetry.group.dev.dependencies] | ||
polyfactory = "*" | ||
httpx = "*" | ||
pytest = "*" | ||
pytest-cov = "*" | ||
pytest-asyncio = "*" | ||
ruff = "*" | ||
mypy = "*" | ||
asyncpg-stubs = "*" | ||
[project.optional-dependencies] | ||
test = [ | ||
"polyfactory", | ||
"httpx", | ||
"pytest", | ||
"pytest-cov", | ||
"pytest-asyncio", | ||
] | ||
lint = [ | ||
"ruff", | ||
"mypy", | ||
"asyncpg-stubs", | ||
] | ||
|
||
[tool.ruff] | ||
fix = true | ||
|
Oops, something went wrong.