Metadata-Version: 2.4
Name: easy_layers
Version: 0.1.0
Summary: A simple neural network layers library
Home-page: https://github.com/yourusername/easy_layers
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: license-file
Dynamic: requires-python
Dynamic: summary

# Easy Layers
Make Models Faster with solely torch-based modules

## Installation

### From PyPI (once published)
```bash
pip install easy_layers
```

### From source
```bash
git clone https://github.com/yourusername/easy_layers.git
cd easy_layers
pip install -e .
```

## Usage

```python
from easy_layers.layers import Layer

# Create a basic layer
layer = Layer(name="my_layer")
output = layer(input_data)
```

## Development

### Build the package
```bash
pip install build
python -m build
```

### Install in development mode
```bash
pip install -e .
```
