Metadata-Version: 2.4
Name: trylle-cli
Version: 1.1.1
Summary: Official command-line client for the Trylle platform
Project-URL: Homepage, https://trylle.com/trylle/trylle-cli
Project-URL: Repository, https://trylle.com/trylle/trylle-cli
Project-URL: Bug Tracker, https://trylle.com/trylle/trylle-cli/issues
Author: Trylle
License-Expression: MIT
License-File: LICENSE
Keywords: cli,code-review,git,trylle
Classifier: Environment :: Console
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: MacOS
Classifier: Operating System :: POSIX :: Linux
Classifier: Programming Language :: Python :: 3
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: Programming Language :: Python :: 3.13
Requires-Python: >=3.9
Description-Content-Type: text/markdown

# trylle-cli

PyPI wrapper for the official Trylle command-line client.

## Install

```bash
uv tool install trylle-cli
```

The package installs both command names:

```bash
try --help
trylle-cli --help
```

Platform-specific wheels are published for macOS ARM64, Linux ARM64, and
Linux x64. The Python package can also locate the embedded executable:

```python
from trylle_cli import get_binary_path

print(get_binary_path())
```
