Metadata-Version: 2.1
Name: mediapills.core
Version: 0.0.2
Summary: A small Python framework domain micro kernel
Home-page: https://github.com/mediapills/core.git
Author: Andriy Yatskovets
Author-email: andriy.yatskovets@gmail.com
License: 'MIT'
Project-URL: Bug Tracker, https://github.com/mediapills/core/issues
Project-URL: Source Code, https://github.com/mediapills/core
Keywords: 'Patterns','Kernel','Use-Case','Entity','Controller'
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/core/workflows/CI%20Build/badge.svg?branch=dev)](https://github.com/mediapills/core/actions)
[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://github.com/mediapills/core/blob/dev/LICENSE.md)
[![Requirements Status](https://requires.io/github/mediapills/core/requirements.svg?branch=dev)](https://requires.io/github/mediapills/core/requirements/?branch=dev)


# 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 Mac OS

To install package run:

```
python3 -m venv mediapills

source mediapills/bin/activate

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

## 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/core.git@dev#egg=mediapills.core
```


