Metadata-Version: 2.1
Name: mediapills.console
Version: 0.0.1
Summary: The console command line python micro-framework
Home-page: https://github.com/mediapills/console.git
Author: Andriy Yatskovets
Author-email: andriy.yatskovets@gmail.com
License: 'MIT'
Project-URL: Bug Tracker, https://github.com/mediapills/console/issues
Project-URL: Source Code, https://github.com/mediapills/console
Keywords: 'console','cli','mediapills','terminal '
Platform: 'any'
Classifier: Development Status :: 1 - Planning
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: Education
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: Implementation
Classifier: Programming Language :: Python :: Implementation :: PyPy
Classifier: Topic :: Software Development :: Libraries :: Application Frameworks
Requires-Python: >=3.5
Description-Content-Type: text/markdown
License-File: LICENSE.md

[![GitHub Workflow Actions Status](https://github.com/mediapills/console/workflows/CI%20Build/badge.svg?branch=main)](https://github.com/mediapills/console/actions)
[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://github.com/mediapills/console/blob/main/LICENSE.md)
[![Requirements Status](https://requires.io/github/mediapills/console/requirements.svg?branch=main)](https://requires.io/github/mediapills/console/requirements/?branch=main)

> CAUTION!
>
> MediaPills Console package is on "active development".

# Install

These instructions will install package. This is a Python package that supports Python 3 on Linux, MacOS and Windows. We recommend using Python 3.6 or higher.

## Linux and MacOS

To install package run:

```
python3 -m venv mediapills

source mediapills/bin/activate

pip install git+ssh://git@github.com/mediapills/console.git@main#egg=mediapills.console
```

## Windows (CMD/PowerShell)

To install package on Windows (CMD/PowerShell)

To install package run:

```
python3 -m venv mediapills

./mediapills/bin/activate

pip install git+ssh://git@github.com/mediapills/console.git@main#egg=mediapills.console
```


