Update readme with typing/flake notes and fix setup.py typing issue.

This commit is contained in:
Jennifer Taylor 2021-07-04 15:55:54 +00:00
parent 86f54c495e
commit 47685fde8c
2 changed files with 15 additions and 1 deletions

View File

@ -58,3 +58,17 @@ A patch with multiple offsets, and helpful author descriptions for each section:
Utility for combining/splitting/byteswapping ROM files. Run it like `./splitrom --help`
to see generic help and what commands are available, and like `./splitrom <command> --help`
for a specific command's help.
## Developing
The tools here are fully typed, and should be kept that way. To verify type hints, run the following:
```
mypy --strict .
```
The tools are also lint clean (save for line length lints which are useless drivel). To verify lint, run the following:
```
flake8 --ignore E501 .
```

View File

@ -1,4 +1,4 @@
from setuptools import setup
from setuptools import setup # type: ignore
setup(