no diff should ocurr as a result of the refactoring Add `metadata.title` to `demo01.yml` to avoid diffs later when calling via CLI Add temporary loop to `demo01` for debugging purposes Add `cleanup.sh` (maybe move/delete later? or add commit hook?) Deprecate Python 3.7, add Python 3.10 Add `devtools.txt` Add `pyan` to `devtools.txt` Add sample use to `devtools.txt`
13 lines
440 B
Plaintext
13 lines
440 B
Plaintext
# The following tools have proven useful during development
|
|
# Feel free to install while inside the WireViz virtualenv, using:
|
|
# pip install -r devtools.txt
|
|
|
|
# Code formatting
|
|
black # black src/wireviz/*.py
|
|
isort # isort src/wireviz/*py
|
|
|
|
# Development aids
|
|
pudb # import pudb; pudb.set_trace()
|
|
autoflake # autoflake -i --remove-all-unused-imports src/wireviz/*.py
|
|
pyan # pyan3 src/wireviz/*.py -uncge --html > temp/pyan.html
|