1- Adding requirements.txt so that users can just do pip install -r requirements.txt and all the dependencies are installed.
2- Have also added flake8 that's basically a tool for style guide enforcement. There were quite so many linting errors (mostly related to exceeding line length), but I have resolved those.
Note: We would need to update the README with the added explanation to how to install the deps and also a contributing section to use flake8 before making any pull request.
Getting warmed up.
Covers:
1- Adding
requirements.txt
so that users can just dopip install -r requirements.txt
and all the dependencies are installed. 2- Have also addedflake8
that's basically a tool for style guide enforcement. There were quite so many linting errors (mostly related to exceeding line length), but I have resolved those.Note: We would need to update the
README
with the added explanation to how to install the deps and also a contributing section to useflake8
before making any pull request.