Metadata-Version: 2.4
Name: vtx-cli
Version: 0.2.5
Classifier: Development Status :: 3 - Alpha
Classifier: Environment :: Console
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Rust
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Topic :: Software Development :: Build Tools
Classifier: Topic :: Utilities
License-File: LICENSE
Summary: VTX CLI
Keywords: wasm,cli,plugin,vtx
Home-Page: https://github.com/vtxdeo/vtx-cli
Author: Vtxdeo
License: MIT
Requires-Python: >=3.8
Description-Content-Type: text/markdown; charset=UTF-8; variant=GFM
Project-URL: Homepage, https://github.com/vtxdeo/vtx-cli
Project-URL: Repository, https://github.com/vtxdeo/vtx-cli

# Installation

## Recommended (System Global)
The easiest way to get the standalone binary.
```bash
curl -fsSL [https://raw.githubusercontent.com/.../install.sh](https://raw.githubusercontent.com/.../install.sh) | sh
# OR
brew install vtxdeo/tap/vtx

```

## Developer Friendly (Using your existing tools)

Already have a language environment? You can install `vtx` using your preferred package manager.

### Node.js

```bash
npm install -g @vtxdeo/cli
# Or run once without installing:
npx @vtxdeo/cli init my-project

```

### Python

We recommend using [pipx](https://www.google.com/search?q=https://pypa.github.io/pipx/) to install CLI tools in isolation.

```bash
pipx install vtx-cli

```

### Rust

```bash
# Installs from source (compilation required)
cargo install vtx-cli

```

