initial commit down a path for a possible core python tkinter gui

This commit is contained in:
Blake Harnden 2019-09-15 15:20:00 -07:00
parent c0ce07404f
commit 70ec532703
6 changed files with 450 additions and 0 deletions

15
coretk/setup.cfg Normal file
View file

@ -0,0 +1,15 @@
[aliases]
test=pytest
[isort]
multi_line_output=3
include_trailing_comma=True
force_grid_wrap=0
use_parentheses=True
line_length=88
[flake8]
ignore=E501,W503,E203
max-line-length=100
max-complexity=26
select=B,C,E,F,W,T4