Metadata-Version: 2.4
Name: furious-math-util
Version: 0.1.0
Summary: A simple math utility module with circle and sphere functions.
Author-email: Your Name <you@example.com>
License: MIT
Project-URL: Homepage, https://example.com
Requires-Python: >=3.7
Description-Content-Type: text/markdown

# mymathutils

A simple math utility module containing functions for squares, cubes, circles, and spheres.

## Usage

```python
import mymathutils as mm

print(mm.square(5))
print(mm.area_of_circle(3))
print(mm.volume_of_sphere(2))
