Metadata-Version: 2.4
Name: mathutils-yourname
Version: 0.1.0
Summary: A simple mathematics utilities library
Author-email: Your Name <your.email@example.com>
License-Expression: MIT
Project-URL: Homepage, https://github.com/yourusername/mathutils
Project-URL: Repository, https://github.com/yourusername/mathutils
Project-URL: Issues, https://github.com/yourusername/mathutils/issues
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Requires-Python: >=3.9
Description-Content-Type: text/markdown

# mathutils-yourname

A simple mathematics utilities library.

## Installation

From source:

1. Build the package
2. Install the wheel

## Usage

```python
from mathutils.basic_ops import add, subtract
from mathutils.statistics import mean

print(add(2,3))
print(mean([1,2,3]))
```

## Development

- Python >=3.9
- Build using `python -m build` or `/Users/c0y00hq/Documents/Local_code/mathutils/.venv/bin/python -m build`
- Install
```
prefer wheel:
/Users/c0y00hq/Documents/Local_code/mathutils/.venv/bin/python -m pip install -U dist/*.whl

or less common:
/Users/c0y00hq/Documents/Local_code/mathutils/.venv/bin/python -m pip install -U dist/*.tar.gz
``` 
- Uninstall:
`pip uninstall mathutils-yourname`

- Clean up
`rm -rf dist build mathutils_yourname.egg-info`
