File tree Expand file tree Collapse file tree 3 files changed +10
-4
lines changed
Expand file tree Collapse file tree 3 files changed +10
-4
lines changed Original file line number Diff line number Diff line change @@ -32,12 +32,12 @@ async def some_func() -> None:
3232
3333The repository includes na example integration with FastAPI,
3434which describes numerous workflows.
35- [ FastAPI example] ( exmaples/fastapi_example/routes )
35+ [ FastAPI example] ( https://github.com/krylosov-aa/context-async-sqlalchemy/tree/main/ exmaples/fastapi_example/routes)
3636
3737
3838It also includes two types of test setups you can use in your projects.
3939
40- [ FastAPI tests example] ( exmaples/fastapi_example/tests )
40+ [ FastAPI tests example] ( https://github.com/krylosov-aa/context-async-sqlalchemy/tree/main/ exmaples/fastapi_example/tests)
4141
4242### The most basic example
4343
Original file line number Diff line number Diff line change 22name = " fastapi-example"
33version = " 0.1.0"
44description = " fastapi-example"
5- readme = " README.md"
65requires-python = " >=3.9"
76dependencies = [
87 " context-async-sqlalchemy" ,
Original file line number Diff line number Diff line change 11[project ]
22name = " context-async-sqlalchemy"
3- version = " 0.1 .0"
3+ version = " 1.0 .0"
44description = " A convenient way to configure and interact with a async sqlalchemy session through context in asynchronous applications"
55readme = " README.md"
6+ authors = [
7+ { name =" krylosov-aa" , email =" krylosov.andrew@gmail.com" }
8+ ]
9+ license = { text = " MIT" }
610requires-python = " >=3.9"
711dependencies = [
812 " sqlalchemy>=2.0" ,
@@ -30,3 +34,6 @@ build-backend = "hatchling.build"
3034
3135[tool .hatch .build .targets .wheel ]
3236packages = [" context_async_sqlalchemy" ]
37+
38+ [project .urls ]
39+ Homepage = " https://github.com/krylosov-aa/context-async-sqlalchemy"
You can’t perform that action at this time.
0 commit comments