Metadata-Version: 2.1
Name: grainsy
Version: 1.0.1
Summary: Library for calculating grains on a chessboard
Author: Vajo Sekulic
Author-email: hello@bekindstudio.at
Requires-Python: >=3.11
Description-Content-Type: text/markdown

# Grains Library

This library provides functions to calculate the number of grains on a chessboard.

---

## Install Locally
Run the following command in the terminal to install your library locally for testing:

```bash
pip install .
```

## Usage

Here is an example of how to use this library:

```python
from grains import square, total

print(square(5))  # Grains on square 5
print(total())    # Total grains on chessboard
```
