Metadata-Version: 2.4
Name: math-utils-john
Version: 1.0.0
Summary: A comprehensive mathematics utility library
Author-email: John Doe <369013027@qq.com>
License: MIT
Project-URL: Homepage, https://github.com/yourusername/math-utils-john
Project-URL: Repository, https://github.com/yourusername/math-utils-john.git
Project-URL: Issues, https://github.com/yourusername/math-utils-john/issues
Keywords: math,utilities,statistics,geometry
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Requires-Python: >=3.7
Description-Content-Type: text/markdown

# Math Utils

A comprehensive mathematics utility library for Python.

## Installation

```bash
pip install math-utils-john
```
# Features

## Basic Operations

Fibonacci sequence
Prime number checking
Factorial calculation
Number operations
Statistics

Mean, median, mode
Standard deviation
Variance
Geometry

Area calculations
Volume calculations
Pythagorean theorem
Usage Examples

```python
from math_utils import fibonacci, is_prime
from math_utils.statistics import mean, median
from math_utils.geometry import circle_area, triangle_area

# Basic operations
print(fibonacci(10))  # 55
print(is_prime(17))   # True

# Statistics
data = [1, 2, 3, 4, 5]
print(mean(data))     # 3.0
print(median(data))   # 3

# Geometry
print(circle_area(5))      # 78.53981633974483
print(triangle_area(3, 4)) # 6.0
```
# License

## Features




### `LICENSE` 
```text
MIT License

Copyright (c) 2024 John Doe

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
```

