-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
43 lines (40 loc) · 1.03 KB
/
pyproject.toml
File metadata and controls
43 lines (40 loc) · 1.03 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
[project]
name = "Visualizations"
version = "1.0.1"
description = "Chart, Generative Image, Fancy Text, Large Emoji, QR Code and Color Swatch via Markdown image URLs"
authors = [
{name = "Olof Larsson"}
]
requires-python = ">=3.11"
dependencies = [
"ruff>=0.1.0",
"networkx>=3.0",
"open-webui",
# Add ALL OpenWebUI requirements for development
"httpx",
"Pillow",
"async-lru",
"cachetools",
"vl-convert-python",
"aiohttp",
"aiofiles",
"pyhocon",
"regex",
"segno",
"replicate",
"openai",
"fal-client",
"psutil>=5.9.0",
"toml>=0.10.0", # For reading pyproject.toml in build script
]
[tool.ruff]
line-length = 320 # Maximum supported by ruff
target-version = "py311"
[tool.ruff.lint]
select = ["E", "F", "W", "I", "UP", "B", "PERF"]
ignore = ["E501", "W293", "SIM108"] # Ignore line too long, blank line contains whitespace, and ternary operator suggestions
[tool.ruff.format]
line-ending = "lf"
quote-style = "double"
indent-style = "space"
skip-magic-trailing-comma = false