File tree Expand file tree Collapse file tree
project/{{cookiecutter.project}} Expand file tree Collapse file tree File renamed without changes.
Original file line number Diff line number Diff line change @@ -14,7 +14,7 @@ authors = [
1414]
1515description = ' '
1616readme = ' README.md'
17- license = {file = ' LICENSE.txt ' }
17+ license = {file = ' LICENSE' }
1818keywords = [
1919]
2020classifiers = [
@@ -35,3 +35,17 @@ classifiers = [
3535exclude = [
3636 ' tests*' ,
3737]
38+ [tool .flake8 ]
39+ max-line-length = 100
40+ extend-ignore = [
41+ # See https://github.com/PyCQA/pycodestyle/issues/373
42+ ' E203' ,
43+ ]
44+ exclude = [
45+ ' .git' ,
46+ ' __pycache__' ,
47+ ' .cc' ,
48+ ' .github' ,
49+ ' __init__.py' ,
50+ ' .venv' ,
51+ ]
Original file line number Diff line number Diff line change 11cookiecutter == 2.6.0
2- pytest == 7.4.3
2+ pytest == 8.3.4
3+ Flake8-pyproject == 1.2.3
Original file line number Diff line number Diff line change 1+ #! /bin/bash
2+
3+ echo -e " \x1b[1;32m[INFO]\x1b[m to flake8 pyutil_cfg tests"
4+ flake8 .
5+ echo -e " \x1b[1;32m[INFO]\x1b[m flake8 done"
You can’t perform that action at this time.
0 commit comments