forked from mrtolkien/fastapi_simple_security
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
33 lines (28 loc) · 793 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
[tool.poetry]
name = "fastapi_simple_security"
version = "1.3.0"
description = "API key-based security for FastAPI"
authors = ["mrtolkien <[email protected]>"]
license = "MIT"
repository = "https://github.com/mrtolkien/fastapi_simple_security"
readme = "README.md"
[tool.poetry.dependencies]
python = ">=3.7.2,<4"
# 0.70 is needed to have the TestClient object
fastapi = ">=0.70"
# Necessary as older versions don't work on python 3.10
urllib3 = ">=1.26.12"
[tool.poetry.group.dev.dependencies]
pytest = "^7.0.0"
httpx = "^0.24.1"
requests = "^2.26.0"
coverage = "^6.5.0"
black = "^22.3.0"
ruff = "^0.0.275"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.isort]
profile = "black"
[tool.coverage.report]
omit = ["tests/conftest.py"]