Metadata-Version: 2.4
Name: xlhdnumpy
Version: 0.2.0
Summary: A simple numpy-like library for array operations
Home-page: https://github.com/yourusername/xlhdnumpy
Author: xiaolihuidao
Author-email: cd101168@qq.com
Classifier: Programming Language :: Python :: 3
Classifier: Operating System :: OS Independent
Requires-Python: >=3.8
Description-Content-Type: text/markdown

# xlhdnumpy

A package similar to Numpy.

## Features

- Create arrays
- Basic array operations (add, subtract, multiply, divide)
- Statistical functions (sum, mean,min,max,unique,median)

## Installation
pip install xlhdnumpy
## Usage
from xlhdnumpy import array

# Create an array
arr = array([1, 2, 3, 4, 5])
print(arr)
## License

This project is licensed under the MIT License - see the LICENSE file for details.
