-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
56 lines (50 loc) · 1.27 KB
/
pyproject.toml
File metadata and controls
56 lines (50 loc) · 1.27 KB
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
52
53
54
55
56
[project]
name = "Dashboard"
version = "1.4.4"
description = ""
authors = [{ name = "Jayden Pyles", email = "jpylesbuisness@gmail.com" }]
dependencies = [
"uvicorn>=0.29.0",
"fastapi>=0.111.0",
"typing-extensions>=4.12.2",
"paramiko>=3.4.1",
"pymongo>=4.8.0",
"motor>=3.5.1",
"docker>=7.1.0",
"uptime-kuma-api>=1.2.1",
"qbittorrent-api>=2024.8.65",
"aiohttp>=3.10.5",
"python-multipart>=0.0.20",
"pyyaml>=6.0.2",
"pytask-queue==1.0.2",
]
requires-python = ">=3.10"
readme = "README.md"
license = { text = "MIT" }
[tool.pdm]
distribution = true
[tool.pdm.dev-dependencies]
dev = ["ipython>=8.26.0"]
[tool.pyright]
include = ["./api/backend/"]
exclude = ["**/node_modules", "**/__pycache__"]
ignore = []
defineConstant = { DEBUG = true }
stubPath = ""
reportMissingImports = true
reportMissingTypeStubs = false
reportAny = false
reportUnknownVariableType = false
reportUnknownMemberType = false
reportExplicitAny = false
reportCallInDefaultInitializer = false
pythonVersion = "3.10"
pythonPlatform = "Linux"
[tool.isort]
length_sort = "1"
profile = "black"
sections = "STDLIB,THIRDPARTY,FIRSTPARTY,LOCALFOLDER"
import_heading_stdlib = "STL"
import_heading_thirdparty = "PDM"
import_heading_firstparty = "LOCAL"
import_heading_localfolder = "LOCAL"