-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
36 lines (33 loc) · 959 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
[tool.poetry]
name = "fast-auth"
version = "0.1.0"
description = "simple OAuth through auth server microservice built with FastAPI"
authors = ["rifatrakib <Rakib.1508@outlook.com>"]
readme = "README.md"
packages = [{include = "fast_auth"}]
[tool.poetry.dependencies]
python = "^3.9"
fastapi = {extras = ["all"], version = "^0.89.1"}
sqlalchemy = {extras = ["asyncio"], version = "^1.4.46"}
python-jose = {extras = ["cryptography"], version = "^3.3.0"}
passlib = {extras = ["bcrypt"], version = "^1.7.4"}
asyncpg = "^0.27.0"
python-decouple = "^3.7"
inflection = "^0.5.1"
alembic = "^1.9.2"
argon2-cffi = "^21.3.0"
fastapi-mail = "^1.2.5"
pydash = "^6.0.2"
pytest = "^7.2.1"
coverage = "^7.2.1"
pytest-asyncio = "^0.20.3"
aioredis = "^2.0.1"
[tool.poetry.group.dev.dependencies]
black = "^22.12.0"
flake8 = "^6.0.0"
mypy = "^0.991"
isort = "^5.11.4"
pre-commit = "^2.21.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"