diff options
author | Matthias Baumgartner <dev@igsor.net> | 2023-03-02 10:26:29 +0100 |
---|---|---|
committer | Matthias Baumgartner <dev@igsor.net> | 2023-03-02 10:26:29 +0100 |
commit | d70e78bbdd9d9b5727f18a82fce08f20bdbbba19 (patch) | |
tree | 56b7ea6a69544ad2443070f6dfcd387d6c318bc9 /README.md | |
parent | a5695dcc4e1be8fccd0b35ba4672cdb3c2c119d7 (diff) | |
download | bsfs-d70e78bbdd9d9b5727f18a82fce08f20bdbbba19.tar.gz bsfs-d70e78bbdd9d9b5727f18a82fce08f20bdbbba19.tar.bz2 bsfs-d70e78bbdd9d9b5727f18a82fce08f20bdbbba19.zip |
readme and changelog
Diffstat (limited to 'README.md')
-rw-r--r-- | README.md | 57 |
1 files changed, 57 insertions, 0 deletions
diff --git a/README.md b/README.md new file mode 100644 index 0000000..da066f6 --- /dev/null +++ b/README.md @@ -0,0 +1,57 @@ + +The Black Star File System +========================== + + +### Developer tools setup + +#### Test coverage (coverage) + +Resources: +* https://coverage.readthedocs.io/en/6.5.0/index.html +* https://nedbatchelder.com/blog/200710/flaws_in_coverage_measurement.html + +Commands: +$ pip install coverage +$ coverage run ; coverage html ; xdg-open .htmlcov/index.html + + + +#### Static code analysis (pylint) + +Resources: +* https://github.com/PyCQA/pylint +* https://pylint.org/ +* https://pylint.pycqa.org/en/latest/user_guide/messages/messages_overview.html#messages-overview + +Commands: +$ pip install pylint +$ pylint bsfs + + + +#### Type analysis (mypy) + +Resources: +* https://github.com/python/mypy +* https://mypy.readthedocs.io/en/stable/ + +Commands: +$ pip install mypy +$ mypy + + + +#### Documentation (sphinx) + +Resources: +* +* + +Commands: +$ pip install ... +$ + + + + |