Metadata-Version: 2.1
Name: skunkbooth
Version: 0.1.1
Summary: A camera app in terminal. One more reason to stay inside terminal.
Home-page: https://github.com/Davidy22/scholarlySkunkJam
License: MIT
Author: Davidy22, dhananjaylatkar, Trisanu-007, shriram1998 and garuna-m6
Requires-Python: >=3.8,<4.0
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Requires-Dist: asciimatics (>=1.13,<2.0)
Requires-Dist: opencv-python (>=4.5,<5.0)
Project-URL: Repository, https://github.com/Davidy22/scholarlySkunkJam
Description-Content-Type: text/markdown

- [Skunkbooth](#skunkbooth)
- [Usage](#usage)
    - [Installation](#installation)
    - [Run](#run)
    - [Media location](#media-location)
- [Contributing](#contributing)
    - [Install Poetry](#install-poetry)
    - [Clone the repo](#clone-the-repo)
    - [Activate poetry shell](#activate-poetry-shell)
    - [Install dev deps](#install-dev-deps)
    - [Run the application](#run-the-application)
    - [Logs](#logs)
# Skunkbooth

A camera app in terminal. One more reason to stay inside terminal.

# Usage
### Installation
```shell
pip install skunkbooth
```

### Run
After installation, use `skunkbooth` command to launch camera.

```shell
skunkbooth
```
### Media location

- macOS and Linux
```shell
ls ~/skunkbooth/pictures
```

- Windows
```powershell
dir C:\Users\<username>\skunkbooth\pictures
```

# Contributing
[Poetry](https://python-poetry.org/) is used for package management.

### Install Poetry

- macOS, Linux or WSL
```shell
curl -sSL https://raw.githubusercontent.com/python-poetry/poetry/master/install-poetry.py | python -
```

- Windows Powershell
```shell
(Invoke-WebRequest -Uri https://raw.githubusercontent.com/python-poetry/poetry/master/install-poetry.py -UseBasicParsing).Content | python -
```

### Clone the repo
```shell
git clone https://github.com/Davidy22/scholarlySkunkJam.git
cd scholarlySkunkJam
```
### Activate poetry shell
```shell
poetry shell
```

### Install dev deps
```shell
poetry install
```

### Run the application
```shell
python3 -m skunkbooth.main
```

### Logs
Logs are located in `skunkbooth` folder.
- macOS and Linux
```shell
ls ~/skunkbooth/.logs
```

- Windows
```powershell
dir C:\Users\<username>\skunkbooth\.logs
```

