Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Modernize the codebase #52

Draft
wants to merge 10 commits into
base: main
Choose a base branch
from
Prev Previous commit
Next Next commit
Add pyproject.toml
This helps with the configuration of reformatting tools such as black
and isort, as well as helping the popular pyright static analyzer
discover the environemnt and source code.
  • Loading branch information
ubitux committed Sep 17, 2023
commit 4be32f8473809a248987e19dbabe8c2177be8bf4
10 changes: 10 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
[tool.black]
line-length = 120

[tool.isort]
profile = "black"
line_length = 120

[tool.pyright]
venv = "venv"
venvPath = "."