forked from FaithLife-Community/LogosLinuxInstaller
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
57 lines (47 loc) · 1.18 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
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
dependencies = [
# "altgraph",
# "certifi",
# "charset-normalizer",
"distro",
# "idna",
"packaging",
"psutil",
"pythondialog",
"requests",
# "tkinter", # actually provided by a system package, not a python package
# "urllib3",
]
name = "ou_dedetai"
dynamic = ["readme", "version"]
requires-python = ">=3.12"
[project.optional-dependencies]
build = ["pyinstaller"]
[project.scripts]
oudedetai = "ou_dedetai.main:main"
[tool.setuptools.dynamic]
readme = {file = ["README.md"], content-type = "text/plain"}
version = {attr = "ou_dedetai.constants.LLI_CURRENT_VERSION"}
[tool.setuptools.packages.find]
where = ["."]
[tool.setuptools.package-data]
"ou_dedetai.img" = ["*icon.png"]
[tool.ruff.lint]
select = ["E", "F"]
[tool.mypy]
warn_unreachable = true
disallow_untyped_defs = false
warn_redundant_casts = true
warn_unused_ignores = true
warn_return_any = true
no_implicit_reexport = true
extra_checks = true
check_untyped_defs = true
[[tool.mypy.overrides]]
module = "ou_dedetai.config"
disallow_untyped_calls = true
disallow_any_generic = false
strict_equality = true