Metadata-Version: 2.1
Name: slapp
Version: 0.2.4
Summary: Tool for easy deploying projects to git repo.
Author: m.semenov
Author-email: 0rang3max@gmail.com
Requires-Python: >=3.6,<4.0
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Requires-Dist: GitPython (>=3.1.12,<4.0.0)
Requires-Dist: PyYAML (>=5.4.1,<6.0.0)
Requires-Dist: confuse (>=1.4.0,<2.0.0)
Requires-Dist: marko (>=1.0.1,<2.0.0)
Requires-Dist: typer[all] (>=0.3.2,<0.4.0)
Description-Content-Type: text/markdown

# Släpp

Tool for quick taggin and deploying releases to Git. Släpp automatically generates and pushes CHANGELOG file to your repo, based on your commit history.

### Installation
```bash
pip install slapp
```

### Usage
- init slapp config
```bash
slapp init
```
- edit slapp.yml file if needed
- do some stuff in your repo and commit it with * 
```bash
git add . && git commit -m "* Added some cool features!"
```
- release tag and build auto-changelog in one command
```bash
slapp release v0.1
```


