-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
37 lines (33 loc) · 725 Bytes
/
Copy pathpyproject.toml
File metadata and controls
37 lines (33 loc) · 725 Bytes
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
[project]
name = "osu-beatmap-to-mania-converter"
version = "v0.9.0"
requires-python = ">= 3.13"
description = "Convert OSU! beatmap to OSU!Mania."
readme = "README.md"
license = {file = "LICENSE"}
keywords = ["osu", "game", "windows", "rhythm", "beatmap"]
[tool.black]
line-length = 90
[tool.isort]
profile = "black"
src_paths = ["src"]
multi_line_output = 3
verbose = true
line_length = 90
[tool.mypy]
python_version = "3.13"
warn_return_any = true
warn_unused_configs = true
files = "**/*.py"
check_untyped_defs = true
[[tool.mypy.overrides]]
module = [
"hpyculator",
"webview",
"pywebio",
"pywebio.output",
"pywebio.input",
"plotly.graph_objects",
"plotly"
]
ignore_missing_imports = true