add basic functionality

This commit is contained in:
Wolfang Torres
2026-06-06 22:12:47 +08:00
parent 64380d2942
commit 345c1a8065
9 changed files with 189 additions and 90 deletions

View File

@@ -94,7 +94,7 @@ exclude = '''
'''
[tool.isort]
src_paths = ["gtomachine", "test"]
src_paths = ["src", "test"]
skip_glob = [".git", "__pycache__", ".vscode", "*venv", "build", "dist", "old", "*.egg-info"]
line_length = 88
multi_line_output = 3
@@ -107,12 +107,11 @@ case_sensitive = true
length_sort = false
balanced_wrapping = true
atomic = true
known_gto = ["gtomachine", "gtodata", "gtotools"]
import_heading_stdlib = "Standard Library"
import_heading_thirdparty = "Pip"
import_heading_gto = "GTO"
import_heading_firstparty = "First Party"
import_heading_localfolder = "Local"
sections = ["FUTURE", "STDLIB", "THIRDPARTY", "GTO", "FIRSTPARTY", "LOCALFOLDER"]
sections = ["FUTURE", "STDLIB", "THIRDPARTY", "FIRSTPARTY", "LOCALFOLDER"]
[tool.pylint.messages_control]
disable = "C0330, C0326"