Added incomplete README

This commit is contained in:
Jules 2022-07-15 13:53:08 +02:00
parent f854ac4588
commit f7190717d7
1 changed files with 17 additions and 0 deletions

17
README.md Normal file
View File

@ -0,0 +1,17 @@
# Click Usage Markdown Generator
## Installation
**pre-push**:
```
#!/bin/sh
if [[ ! -z "$VIRTUAL_ENV" ]]
then
clickusagemd ${GIT_DIR}pyproject.toml || exit 1
git add ${GIT_DIR}USAGE.md || exit 1
git commit -m"Autogenerated USAGE.md updated and added."
fi
exit 0
```