v1.1.8
General package maintenance
Closes #20
- Add missing new lines at end of
.pylintrc
andCONTRIBUTION.md
. - Gitignore:
- Common VS Code and JetBrains IDE user-specific stuff.
- All
__pycache__
dirs (**/__pycache__
).
- Delete and untrack all
*.pyc
files. - Reformat and improve some docstrings.
- Remove some excessive comments, e.g.
## IMPORTS ##
or# WIPE
. The import section is clear and visible enough to not need such additional comment. Same with functions - docstrings do that job well. - Refactor and simplify CLI argument parsing.
- Adapt
setup.py
to use pip requirement text files.- Create extra
dev
and correspondingrequirements_dev.txt
requirement text file. Can be installed viapip install -e .[dev]
or from PyPI viapip install konsave[dev]
.
- Create extra
- Remove "Dependencies" section from
README.md
- dependencies get installed automatically anyway.