Metadata-Version: 2.4
Name: neural_spatial_nets
Version: 0.1.3
Summary: A Python library for spatial and Hopfield neural networks.
Author-email: SK SAMIUL HQ <sksamiul5045@gmail.com>
Project-URL: Homepage, https://github.com
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.7
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: networkx>=3.0
Requires-Dist: numpy>=1.20.0
Requires-Dist: matplotlib>=3.5.0
Dynamic: license-file

# neural_spatial_nets

A Python package for implementing spatial, Euclidean, and Hopfield neural networks.

## Installation

You can install this package locally for development:

```bash
pip install -e .
```

## Usage

```python
from neural_spatial_nets import SpatialNetwork, Euclidean_network, HP_network
```
