-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
79 lines (73 loc) · 1.16 KB
/
Copy pathpyproject.toml
File metadata and controls
79 lines (73 loc) · 1.16 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
[project]
dependencies = [
"Pillow",
"PyQt6",
"cryptography>=3.1",
"cx_Freeze",
"html5lib",
"numpy",
"opencv_python",
"pandas",
"pdf2image",
"pypdf",
"pytesseract",
"translate",
"wikipedia",
"tendo",
]
name = "fileopsgui"
version = "0.1.0"
description = "Add your description here"
readme = "README.md"
requires-python = ">=3.13"
[tool.ruff.lint]
select = [
"ANN",
"ARG",
"B",
"B",
"C4",
"C901",
"COM",
"D",
"E",
"ERA",
"F",
"F",
"FIX",
"I",
"ISC",
"N",
"NPY",
"PERF",
"PGH",
"PIE",
"PTH",
"Q",
"RUF",
"S",
"SIM",
"UP",
"W",
"W",
"YTT",
]
[tool.ruff]
target-version = "py314"
ignore = [
"ANN401", # any-type type hint
"N802", # snake_case method names
"S311", # cryptography warning
"RUF015", # next vs [0]
]
line-length = 100
extend-exclude = ["dist"]
[tool.ruff.lint.pydocstyle]
convention = "numpy"
[tool.ruff.lint.pep8-naming]
ignore-names = ["*"]
[tool.cxfreeze]
executables = [{ script = "run.py", target_name = "filegui" }]
[tool.cxfreeze.build_exe]
build_exe = "dist"
optimize = 2