Metadata-Version: 2.1
Name: cste-helloworld
Version: 0.0.1
Summary: Say hello cste!
Home-page: https://bitbucket.org/corporativo-ste/cste-helloworld
Author: Corporativo STE
Author-email: corporativoste7@gmail.com
License: UNKNOWN
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Description-Content-Type: text/markdown
Requires-Dist: blessings (~=1.7)
Provides-Extra: dev
Requires-Dist: pytest (>=3.7) ; extra == 'dev'
Requires-Dist: check-manifest ; extra == 'dev'
Requires-Dist: twine ; extra == 'dev'

# Hello World CSTE

This is an example project demonstrating how to publish a python module to PyPI.

## Installation

Run the following to install:

```python
pip install cste-helloworld
```

## Usage

```python
from cstehelloworld import say_hello

# Generate "Hello, World CSTE!"
say_hello()

# Generate "Hello, Antony CSTE!"
say_hello("Antony")
```

## Tests

This is for installing all necesary packeges for testing
```python
pip3 install -e .[dev]
pip install -e .\[dev\]
```


