-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
76 lines (69 loc) · 1.31 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
[project]
name = "FoxConnect"
version = "0.0.1"
description = "Web based tool to automatically generate logic flow diagrams for Foxboro I/A series DCS based on configuration files dumped from the ICC."
readme = "README.md"
requires-python = ">=3.10"
dependencies = [
"app",
"pyfastmurmur3",
"quart_d3graphviz",
"quart_foxdata",
"quart_htmx",
"Quart == 0.19.9",
"Hypercorn == 0.17.3",
"billiard == 4.2.1",
"python-dotenv == 1.0.1",
"XlsxWriter == 3.2.0",
"PyYAML == 6.0.2",
]
[tool.uv]
dev-dependencies = ["setuptools"]
[tool.uv.sources]
app = { workspace = true }
pyfastmurmur3 = { workspace = true }
quart_d3graphviz = { workspace = true }
quart_foxdata = { workspace = true }
quart_htmx = { workspace = true }
[tool.uv.workspace]
members = ["packages/*"]
[tool.ruff]
line-length = 120
[tool.ruff.format]
quote-style = "double"
indent-style = "space"
docstring-code-format = true
[tool.ruff.lint]
ignore = ["ANN401", "B023", "PYI021", "PYI048", "RET505"]
extend-select = [
"E",
"W",
"N",
"ANN",
"C90",
"UP",
"ASYNC",
"S",
"FBT",
"B",
"A",
"COM",
"C4",
"FA",
"ISC",
"ICN",
"INP",
"PYI",
"Q",
"RET",
"SLF",
"SLOT",
"SIM",
"TID",
"TC",
"INT",
"PL",
"FLY",
"PERF",
"RUF",
]