-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
51 lines (44 loc) · 943 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
46
47
48
49
50
51
[tool.poetry]
authors = [
"Francisco Del Roio <[email protected]>",
]
description = "FastAPI integration with firebase"
exclude = [
"tests/",
"app/",
]
name = "fastapi-firebase"
readme = "README.md"
version = "0.3.0"
[tool.poetry.dependencies]
fastapi = ">0.60.0<1.0.0"
firebase-admin = "^5.2.0"
python = "^3.8"
python-multipart = "^0.0.5"
[tool.poetry.dev-dependencies]
aiofiles = "^0.8.0"
black = "^21.12b0"
flake8 = "^4.0.1"
ipython = "^8.0.1"
isort = "^5.10.1"
mypy = "^0.931"
pre-commit = "^2.17.0"
pytest = "^6.2.5"
pytest-cov = "^3.0.0"
uvicorn = {extras = ["standard"], version = "^0.17.3"}
[build-system]
build-backend = "poetry.core.masonry.api"
requires = ["poetry-core>=1.0.0"]
[tool.isort]
line_length = 100
profile = "black"
[tool.black]
line-length = 100
[tool.mypy]
ignore_missing_imports = true
[tool.pytest.ini_options]
addopts = "-ra -q --cov=fastapi_firebase"
minversion = "6.0"
testpaths = [
"tests",
]