Metadata-Version: 2.2
Name: spssnumpy
Version: 0.1.0
Summary: A lightweight library for numerical operations.
Home-page: https://github.com/yourusername/spssnumpy
Author: Your Name
Author-email: your.email@example.com
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
License-File: LICENSE
Dynamic: author
Dynamic: author-email
Dynamic: classifier
Dynamic: description
Dynamic: description-content-type
Dynamic: home-page
Dynamic: requires-python
Dynamic: summary

# spssnumpy

A lightweight library for numerical operations, including arrays, matrices, and linear algebra.

## Installation

```bash
pip install spssnumpy
```

USAGE:
from spssnumpy import Array

# Create an array

arr = Array([[1, 2], [3, 4]])

# Perform operations

print(arr + arr)
print(arr.dot(arr))
