Metadata-Version: 2.4
Name: seed-everything
Version: 0.1.0
Summary: A lightweight library to seed everything for reproducible experiments.
Author-email: Sunny Lin <sunnylinyy@outlook.com>
License: MIT
Project-URL: Homepage, https://github.com/SunnyYYLin/seed-everything
Project-URL: Bug Tracker, https://github.com/SunnyYYLin/seed-everything/issues
Project-URL: Repository, https://github.com/SunnyYYLin/seed-everything.git
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: Science/Research
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Operating System :: OS Independent
Classifier: Topic :: Scientific/Engineering
Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
Requires-Python: >=3.7
Description-Content-Type: text/markdown
License-File: LICENSE
Dynamic: license-file

# Seed Everything

A lightweight library to seed everything for reproducible experiments in deep learning.

## Installation

```bash
pip install seed-everything
```

## Usage

```python
from seed_everything import seed_everything

seed_everything(42)
```

This will seed:
- `random`
- `os`
- `numpy`
- `torch` (if available)
- `tensorflow` (if available)
- `jax` (if available)
