Metadata-Version: 2.4
Name: anor
Version: 0.1.0
Summary: Anor Cloud GPU CLI - Managed GPU compute made simple
Project-URL: Homepage, https://anor.cloud
Project-URL: Documentation, https://docs.anor.cloud
Project-URL: Repository, https://github.com/Ornn-AI/ornn-gpu-marketplace
Author-email: Anor Cloud <support@anor.cloud>
License-Expression: MIT
Keywords: ai,cli,cloud,compute,gpu,machine-learning
Classifier: Development Status :: 4 - Beta
Classifier: Environment :: Console
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: Science/Research
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
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: Topic :: Scientific/Engineering :: Artificial Intelligence
Requires-Python: >=3.8
Requires-Dist: click>=8.0.0
Requires-Dist: httpx>=0.24.0
Requires-Dist: rich>=13.0.0
Description-Content-Type: text/markdown

# Anor CLI

Managed GPU compute made simple.

## Installation

```bash
pip install anor
```

## Quick Start

```bash
# Login to your account
anor login

# Run a training job
anor run --grade standard --gpus 8 --max-rate 2.20 "python train.py"

# List your jobs
anor jobs list

# Get job logs
anor jobs logs <job-id>

# View pricing
anor pricing
```

## Commands

| Command | Description |
|---------|-------------|
| `anor login` | Login and store credentials |
| `anor logout` | Clear stored credentials |
| `anor whoami` | Show current user |
| `anor run` | Submit a compute job |
| `anor jobs list` | List your jobs |
| `anor jobs get <id>` | Get job details |
| `anor jobs logs <id>` | Get job logs |
| `anor jobs cancel <id>` | Cancel a job |
| `anor pricing` | Show current pricing |

## Compute Grades

| Grade | Price | GPU Types |
|-------|-------|-----------|
| Standard | $1.80/GPU/hr | T4, V100, L4 |
| Performance | $2.50/GPU/hr | A100, A100-80GB |
| Premium | $4.00/GPU/hr | H100, H200, B200 |

## Documentation

https://docs.anor.cloud
