File tree Expand file tree Collapse file tree 3 files changed +7
-5
lines changed
Expand file tree Collapse file tree 3 files changed +7
-5
lines changed Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -23,7 +23,7 @@ Click the [Use this template](https://github.com/Justintime50/python-template/ge
2323
2424### File configuration
2525
26- 1 . Configure the ` setup.py ` file
26+ 1 . Configure the ` pyproject.toml ` file
27271 . Configure the ` justfile ` targets
28281 . Update the name in the ` LICENSE ` or swap it out entirely
29291 . Configure the ` .github/workflows/build.yml ` file
Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ name = "PROJECT_NAME_URL"
77description = " Your project description here"
88dynamic = [" version" ]
99readme = " README.md"
10- requires-python = " >=3.10,<4 "
10+ requires-python = " >=3.10"
1111license = { text = " MIT" }
1212authors = [{ name = " USERNAME" }]
1313urls = { Homepage = " http://github.com/USERNAME/PROJECT_NAME_URL" }
@@ -21,6 +21,7 @@ optional-dependencies = { dev = [
2121 " black == 25.*" ,
2222 " build == 1.3.*" ,
2323 " flake8 == 7.*" ,
24+ " Flake8-pyproject == 1.2.*" ,
2425 " isort == 7.*" ,
2526 " mypy == 1.18.*" ,
2627 " pytest == 9.*" ,
@@ -52,3 +53,7 @@ use_parentheses = true
5253
5354[tool .mypy ]
5455disable_error_code = " import-untyped"
56+
57+ [tool .flake8 ]
58+ max-line-length = 120
59+ extend-ignore = " E203"
You can’t perform that action at this time.
0 commit comments