Metadata-Version: 2.1
Name: epic-by-tom-tkacz
Version: 1.0.0
Home-page: https://github.com/TomTkacz/epic
Author: Tom Tkacz
Author-email: thomasatkacz@gmail.com
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Description-Content-Type: text/markdown
License-File: LICENSE.txt
Provides-Extra: dev
Requires-Dist: pytest (>=3.7) ; extra == 'dev'

# Epic

This is a test project

## Installation

Run the following to install:

```python
pip install epic-by-tom-tkacz
```

## Usage

```python
from epic import say_epic

# Generate "Epic!"
say_epic()
```

# Developing Epic

To install epic, along with the tools you need to develop and run tests, run the following in your virtualenv:

```bash
$ pip install -e .[dev]
```
