-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
45 lines (36 loc) · 1018 Bytes
/
pyproject.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
[tool.poetry]
name = "FastAPI-asyncpg-sqlalchemy"
version = "0.1.0"
description = "Myself learning of Fast API framework"
authors = ["Alexandr Abramov <https://github.com/Abramov0Alexandr>"]
license = "MIT License"
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.9"
fastapi = {extras = ["all"], version = "^0.104.1"}
[tool.poetry.group.db.dependencies]
sqlalchemy = "^2.0.23"
asyncpg = "^0.28.0"
alembic = "^1.12.1"
[tool.poetry.group.dev.dependencies]
pydantic = {extras = ["email"], version = "^2.4.2"}
ipython = "^8.17.2"
passlib = {extras = ["bcrypt"], version = "^1.7.4"}
python-slugify = "^8.0.1"
httpx = "^0.25.1"
pytest-asyncio = "^0.21.1"
pre-commit = "^3.5.0"
black = "^23.11.0"
pytest-cov = "^4.1.0"
pyjwt = "^2.8.0"
fastapi-cache2 = {extras = ["redis"], version = "^0.2.1"}
python-multipart = "^0.0.6"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.pytest.ini_options]
pythonpath = [
# "/", "app",
"app/tests/",
]
asyncio_mode="auto"