Metadata-Version: 2.4
Name: RandomInts
Version: 0.0.8
Summary: A custom random number generator built from scratch. Function #1 Rand() function #2 RandSeed(45).
Author-email: wawa2016-here <lemver2016@gmail.com>
Requires-Python: >=3.7
Description-Content-Type: text/markdown

# RandomInts
*A custom random number generator built from scratch.
*And to Import it you use from RandomInts import Rand

## Functions Included:
* **Rand()**: Generates a random integer.
* **RandSeed(seed)**: Sets a custom seed value for generation.

## Installation
```bash
pip install RandomInts
```

## Quick Start
```python
from RandomInts import Rand
```

# Try it out
```python
Rand()
RandSeed(23)
