Metadata-Version: 2.4
Name: physanim
Version: 0.1.1
Summary: A lightweight physics animation library
Author-email: Ayush Kumar Jha <jhaayushkumar@gmail.com>
Project-URL: Homepage, https://github.com/yourusername/physanim
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
Requires-Dist: numpy
Requires-Dist: matplotlib
Requires-Dist: scipy

# PhysAnim

PhysAnim is a Python library designed to make physics simulations and animations effortless.

## Installation

```bash
pip install .
```

## Usage

```python
import physanim
from physanim.systems import DoublePendulum

# Create a customized double pendulum
pendulum = DoublePendulum(L1=1.0, L2=1.0, m1=1.0, m2=1.0)

# Animate it!
physanim.animate(pendulum)
```
