JulianKemmerer / PipelineC

A C-like hardware description language (HDL) adding high level synthesis(HLS)-like automatic pipelining as a language construct/compiler feature.
https://github.com/JulianKemmerer/PipelineC/wiki
GNU General Public License v3.0
607 stars 50 forks source link

added poetry dependencies #103

Closed ghost closed 2 years ago

ghost commented 2 years ago

Poetry allows folks to manage their dependencies. All dependencies added by this PR are dev only, no user of PipelineC will need to use them.

Vulture ensures that there is no dead code, Black formats the code, pytest… tests, hypothesis does fuzzing on tests, and mutmut makes sure the tests are good. Finally mypy checks optional typing information.

JulianKemmerer commented 2 years ago

All dependencies added by this PR are dev only, no user of PipelineC will need to use them. Excellent

You or I should get Vulture ensures that there is no dead code, Black formats the code, pytest… tests, hypothesis does fuzzing on tests, and mutmut makes sure the tests are good. Finally mypy checks optional typing information. into the new contrib info doc

This looks good to merge