Metadata-Version: 2.1
Name: py-random-words
Version: 0.2
Summary: Generate random names
Home-page: https://github.com/andreasonny83/py_random_words
Author: andreasonny83
Author-email: andreasonny83@gmail.com
License: MIT
Platform: UNKNOWN
Requires-Python: >=3.6
Description-Content-Type: text/markdown

# Py Random Words

## Installation

To install, simply:

```bash
$ pip3 install py_random_words
```

## Usage

```py
from py_random_words import RandomWords

rnd_word = RandomWords()

print(rnd_word.get_word()) # alpaca
print(rnd_word.get_word()) # cat
print(rnd_word.get_word()) # dog
```

## Release steps

```sh
# Make sure you have the latest versions of setuptools and wheel installed
$ python3 -m pip install --user --upgrade setuptools wheel

# Now run this command from the same directory where setup.py is located
$ python3 setup.py sdist bdist_wheel

# Uploading the distribution archives
$ python3 -m pip3 install --user --upgrade twine
$ python3 -m twine upload dist/*
```

