Metadata-Version: 2.1
Name: python-common-lib
Version: 1.0.2
Summary: 
Author: Szilard Nemeth
Author-email: szilard.nemeth88@gmail.com
Requires-Python: >=3.8,<4.0
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Requires-Dist: Colr (>=0.9.1,<0.10.0)
Requires-Dist: GitPython (>=3.1.27,<4.0.0)
Requires-Dist: bs4 (>=0.0.1,<0.0.2)
Requires-Dist: dataclasses-json (>=0.5.7,<0.6.0)
Requires-Dist: docker (>=6.0.0,<7.0.0)
Requires-Dist: gspread (>=5.5.0,<6.0.0)
Requires-Dist: humanize (>=4.4.0,<5.0.0)
Requires-Dist: jira (>=3.4.1,<4.0.0)
Requires-Dist: pytest (>=6.2.3,<6.3.0)
Requires-Dist: requests (>=2.28.1,<3.0.0)
Requires-Dist: sh (>=1.14.1,<1.15.0)
Requires-Dist: tabulate (>=0.8.10,<0.9.0)
Description-Content-Type: text/markdown

# python-commons

Run ./setup.sh to set up git pre/post push hook scripts.
Then, a similar script loaded to the environment will execute the pre/post push hook scripts: 
https://stackoverflow.com/a/3812238/1106893

For example loading this script and defining an alias like this will do the trick:
`alias gpwh="git-push-with-hooks.sh"`


## Setup of precommit

Configure precommit as described in this blogpost: https://ljvmiranda921.github.io/notebook/2018/06/21/precommits-using-black-and-flake8/
Commands:
1. Install precommit: `pip install pre-commit`
2. Make sure to add pre-commit to your path. For example, on a Mac system, pre-commit is installed here: 
   `$HOME/Library/Python/3.8/bin/pre-commit`.
2. Execute `pre-commit install` to install git hooks in your `.git/` directory.

## Troubleshooting

### Installation issues
In case you're facing a similar issue:
```
An error has occurred: InvalidManifestError: 
=====> /<userhome>/.cache/pre-commit/repoBP08UH/.pre-commit-hooks.yaml does not exist
Check the log at /<userhome>/.cache/pre-commit/pre-commit.log
```
, please run: `pre-commit autoupdate`
More info here: https://github.com/pre-commit/pre-commit/issues/577
