Skip to content

Commit b4b3b50

Browse files
committed
small docs fixes
1 parent 939742d commit b4b3b50

File tree

3 files changed

+10
-4
lines changed

3 files changed

+10
-4
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,12 +32,12 @@ async def some_func() -> None:
3232

3333
The repository includes na example integration with FastAPI,
3434
which 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

3838
It 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

exmaples/fastapi_example/pyproject.toml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22
name = "fastapi-example"
33
version = "0.1.0"
44
description = "fastapi-example"
5-
readme = "README.md"
65
requires-python = ">=3.9"
76
dependencies = [
87
"context-async-sqlalchemy",

pyproject.toml

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,12 @@
11
[project]
22
name = "context-async-sqlalchemy"
3-
version = "0.1.0"
3+
version = "1.0.0"
44
description = "A convenient way to configure and interact with a async sqlalchemy session through context in asynchronous applications"
55
readme = "README.md"
6+
authors = [
7+
{ name="krylosov-aa", email="krylosov.andrew@gmail.com" }
8+
]
9+
license = { text = "MIT" }
610
requires-python = ">=3.9"
711
dependencies = [
812
"sqlalchemy>=2.0",
@@ -30,3 +34,6 @@ build-backend = "hatchling.build"
3034

3135
[tool.hatch.build.targets.wheel]
3236
packages = ["context_async_sqlalchemy"]
37+
38+
[project.urls]
39+
Homepage = "https://github.com/krylosov-aa/context-async-sqlalchemy"

0 commit comments

Comments
 (0)