Metadata-Version: 2.4
Name: Velocicode
Version: 0.1.0
Summary: A CLI tool for programming language speed benchmarks
Author-email: Code Agent <agent@example.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: pyyaml
Dynamic: license-file

# Velocicode

A command-line interface tool to benchmark the execution speed of various programming languages (Python, C++, Rust, Go, JavaScript) on standard algorithms.

## Installation

```bash
pip install velocicode
```

## Platform Support

- **Linux**: Fully supported.
- **macOS**: Fully supported (requires Xcode Command Line Tools for compilers).
- **Windows**: Supported via **WSL2** (Windows Subsystem for Linux). Native Windows support is currently experimental.

## Usage

Run the interactive mode:

```bash
velocicode
```

Or use command line arguments:

```bash
# Run all
velocicode run

# Filter by algorithm
velocicode run --filter-algo matrix_mul

# Filter by language
velocicode run --filter-lang python,cpp
```

## Supported Benchmarks

- **Fibonacci**
- **Matrix Multiplication**
- **Quick Sort**

## Requirements

> [!IMPORTANT]
> This tool requires external compilers to be installed on your system. `pip` will **not** install these for you.

- Python 3.7+
- **System Compilers**:
  - `python3` (for Python)
  - `g++` (for C++)
  - `rustc` (for Rust)
  - `go` (for Go)
  - `node` (for JavaScript)

Run `velocicode check` to see which compilers are missing on your system. The tool will simply skip languages that are not installed.
