Metadata-Version: 2.1
Name: random-python-package-within-monorepo
Version: 0.0.1
Summary: This will generate random number for you!
Home-page: https://github.com/davidoh0905/urban-octo-waffle
Author: David Oh
Author-email: davidoh0905@gmail.com
License: : OSI Approved :: MIT License
Description-Content-Type: text/markdown
License-File: LICENSE.txt

Just random useless package for testing 1

Usually, things would be under `src` directory.
But we are going to name it with the package name as this is a monorepo...?

## Installation

Run the following to install:

```python
pip install helloworld
```

## Usage

```python
from python_package_1 import random_number

# Generate random number
random_number.RandomNumberGenerator().run()
```

# Developing python_package_1

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

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

We are installing current package with the dev extras.
