-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
42 lines (36 loc) · 990 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
[tool.poetry]
name = "better-ed-backend"
version = "0.1.0"
description = ""
authors = ["Your Name <[email protected]>"]
license = "MIT"
readme = "README.md"
packages = [{include = "src"}]
[tool.poetry.dependencies]
python = "^3.10"
fastapi = "^0.95.0"
prisma = "^0.8.2"
firebase-admin = "^6.1.0"
uvicorn = {extras = ["standard"], version = "^0.21.1"}
loguru = "^0.6.0"
passlib = {extras = ["argon2"], version = "^1.7.4"}
pydantic = {extras = ["email"], version = "^1.10.7"}
[tool.poetry.group.dev.dependencies]
pre-commit = "^3.2.0"
black = "^23.1.0"
isort = "^5.12.0"
taskipy = "^1.10.4"
flake8 = "^6.0.0"
flake8-annotations = "^3.0.0"
flake8-bugbear = "^23.3.23"
[tool.isort]
profile = "black"
line_length = 100
[tool.black]
line-length = 100
[tool.taskipy.tasks]
lint = { cmd = "pre-commit run --all-files", help = "Lints project." }
format = { cmd = "black .", help = "Runs Black autoformatter." }
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"