Metadata-Version: 2.4
Name: godzilla.dev
Version: 0.1.1
Summary: godzilla.dev is an open-source C++/Python framework for self-hosted crypto funding rate arbitrage and ultra low-latency market making, maintained by the Godzilla Foundation. Official command-line interface for installing and managing godzilla.dev
Author: Godzilla Foundation
Maintainer: Godzilla Foundation
License-Expression: Apache-2.0
Project-URL: Homepage, https://godzilla.dev/
Project-URL: Documentation, https://godzilla.dev/documentation/
Project-URL: Repository, https://github.com/godzilla-foundation/godzilla-cli
Project-URL: Core, https://github.com/godzilla-foundation/godzilla-community
Project-URL: Issues, https://github.com/godzilla-foundation/godzilla-cli/issues
Project-URL: Changelog, https://github.com/godzilla-foundation/godzilla-cli/releases
Project-URL: Enterprise, https://godzilla.dev/enterprise/
Keywords: godzilla.dev,algorithmic-trading,quantitative-trading,crypto-trading,funding-rate-arbitrage,market-making,low-latency,hft
Classifier: Development Status :: 4 - Beta
Classifier: Environment :: Console
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: Financial and Insurance Industry
Classifier: Operating System :: POSIX :: Linux
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Classifier: Topic :: Office/Business :: Financial
Classifier: Topic :: Software Development :: Libraries :: Application Frameworks
Requires-Python: >=3.10
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: click<9,>=8.1
Requires-Dist: platformdirs<5,>=4.3
Requires-Dist: rich<15,>=13.9
Provides-Extra: dev
Requires-Dist: build<2,>=1.2; extra == "dev"
Requires-Dist: pytest<9,>=8; extra == "dev"
Requires-Dist: pytest-cov<7,>=6; extra == "dev"
Requires-Dist: ruff<1,>=0.12; extra == "dev"
Requires-Dist: twine<7,>=6; extra == "dev"
Dynamic: license-file

# godzilla.dev CLI

The official command-line interface for installing and managing
[godzilla.dev](https://godzilla.dev/).

godzilla.dev is an open-source C++/Python framework for self-hosted crypto funding rate arbitrage and ultra low-latency market making, maintained by the Godzilla Foundation.

## Installation

```bash
python -m pip install godzilla.dev
```

## Check your environment

```bash
godzilla doctor
```

## Install godzilla-community

Install the latest development version:

```bash
godzilla install
```

Install a specific release:

```bash
godzilla install --version v2.1.12
```

Use a custom installation directory:

```bash
godzilla install \
  --directory ~/dev/godzilla-community \
  --version v2.1.12
```

## Manage the installation

Show status:

```bash
godzilla status
```

Show CLI and core versions:

```bash
godzilla version
```

Update the core repository:

```bash
godzilla update
```

Switch to another core release:

```bash
godzilla use v2.1.13
```

Remove the installed source checkout:

```bash
godzilla uninstall
```

## Architecture

The `godzilla.dev` PyPI package provides the official CLI and
installation tooling.

The native low-latency C++ trading engine is maintained separately in:

- https://github.com/godzilla-foundation/godzilla-community

Installing this CLI does not automatically build or start the native
trading engine.

## Documentation

- Website: https://godzilla.dev/
- Documentation: https://godzilla.dev/documentation/
- Enterprise deployment: https://godzilla.dev/enterprise/

## License

Apache License 2.0.
