-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
46 lines (40 loc) · 1.02 KB
/
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
[project]
name = "FumeWeb"
version = "1.0.0"
description = "Web dashboard for all the FumeStop services."
license = "AGPL-3.0"
authors = [
{ name="Sayan Bhattacharyya", email="[email protected]" },
]
readme = "README.md"
requires-python = ">=3.10"
dependencies = [
"better-ipc",
"discord-py>=2.4.0",
"quart>=0.19.9",
"quart-wtforms>=1.0.3",
"quartcord>=1.0.1",
]
[project.optional-dependencies]
speed = [
"uvloop>=0.21.0",
]
[tool.uv]
dev-dependencies = [
"pre-commit>=3.5.0",
"ruff>=0.8.3",
]
[tool.uv.sources]
better-ipc = { git = "https://github.com/MiroslavRosenov/better-ipc/", rev = "efb145d9dabc0a90e4c6e32be08bd03ae4257249" }
[tool.ruff]
line-length = 85
target-version = "py312"
[tool.ruff.lint.isort]
section-order = ["future", "typing", "standard-library", "third-party", "discord", "first-party", "local-folder", "config"]
force-wrap-aliases = true
combine-as-imports = true
length-sort = true
[tool.ruff.lint.isort.sections]
"config" = ["config"]
"discord" = ["discord"]
"typing" = ["typing"]