generated from one-zero-eight/fastapi-template
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
39 lines (36 loc) · 854 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
[tool.poetry]
name = "innohassle-room-booking"
version = "0.1.0"
description = ""
authors = ["one-zero-eight <https://t.me/one_zero_eight>"]
readme = "README.md"
package-mode = false
[tool.poetry.dependencies]
python = "^3.12"
authlib = "^1.3.2"
colorlog = "^6.8.2"
cryptography = "^43.0.1"
exchangelib = "^5.4.3"
fastapi = "^0.115.0"
fastapi-swagger = "^0.2.3"
gunicorn = "^23.0.0"
httpx = {version = "^0.27.2"}
pre-commit = "^4.0.0"
pydantic = "^2.9.2"
pytz = "^2024.2"
pyyaml = "^6.0.2"
requests-curl = {git = "https://github.com/paivett/requests-curl.git", rev = "82a7fc1"}
ruff = "^0.7.4"
uvicorn = "^0.32.0"
[tool.ruff]
line-length = 120
lint.ignore = [
# wildcard imports are fine
"F403",
"F405",
"PLR"
]
lint.extend-select = ["I", "UP", "PL"]
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"