Metadata-Version: 2.4
Name: verible
Version: 0.0.4071.0
Summary: Python wrapping/binding for verible
Project-URL: Repository, https://github.com/dau-dev/verible-python
Project-URL: Homepage, https://github.com/dau-dev/verible-python
Author-email: the verible-python authors <dev@dau.dev>
License: Apache-2.0
License-File: LICENSE
Classifier: Development Status :: 3 - Alpha
Classifier: Programming Language :: Python
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: Programming Language :: Python :: 3.14
Requires-Python: >=3.10
Provides-Extra: cli
Requires-Dist: rich; extra == 'cli'
Requires-Dist: typer; extra == 'cli'
Provides-Extra: develop
Requires-Dist: build; extra == 'develop'
Requires-Dist: bump-my-version; extra == 'develop'
Requires-Dist: check-dist; extra == 'develop'
Requires-Dist: cibuildwheel; extra == 'develop'
Requires-Dist: codespell; extra == 'develop'
Requires-Dist: hatchling; extra == 'develop'
Requires-Dist: mdformat; extra == 'develop'
Requires-Dist: mdformat-tables>=1; extra == 'develop'
Requires-Dist: pytest; extra == 'develop'
Requires-Dist: pytest-cov; extra == 'develop'
Requires-Dist: ruff; extra == 'develop'
Requires-Dist: twine; extra == 'develop'
Requires-Dist: ty; extra == 'develop'
Requires-Dist: uv; extra == 'develop'
Requires-Dist: wheel; extra == 'develop'
Description-Content-Type: text/markdown

# verible

Python wrapping/binding for verible

[![Build Status](https://github.com/dau-dev/verible-python/actions/workflows/build.yml/badge.svg?branch=main&event=push)](https://github.com/dau-dev/verible-python/actions/workflows/build.yml)
[![codecov](https://codecov.io/gh/dau-dev/verible-python/branch/main/graph/badge.svg)](https://codecov.io/gh/dau-dev/verible-python)
[![License](https://img.shields.io/github/license/dau-dev/verible-python)](https://github.com/dau-dev/verible-python)
[![PyPI](https://img.shields.io/pypi/v/verible.svg)](https://pypi.python.org/pypi/verible)

## Overview

Wrapper of [verible](https://github.com/chipsalliance/verible), distributed via PyPI. Verible is a suite of SystemVerilog developer tools including a parser, formatter, linter, and language server.

```bash
# Format SystemVerilog files
verible-cli verible-verilog-format --inplace my_design.sv

# Lint SystemVerilog files
verible-cli verible-verilog-lint my_design.sv

# Syntax check
verible-cli verible-verilog-syntax my_design.sv

# Language server
verible-cli verible-verilog-ls
```

## Available Tools

- `verible-verilog-syntax` — SystemVerilog parser/syntax checker
- `verible-verilog-format` — SystemVerilog formatter
- `verible-verilog-lint` — SystemVerilog linter
- `verible-verilog-kythe` — Kythe indexing for SystemVerilog
- `verible-verilog-ls` — Language server
- `verible-verilog-project` — Project tool
- `verible-verilog-objdump` — Pretty-printer

## License

This software is licensed under the Apache 2.0 license. See the [LICENSE](LICENSE) file for details.

Verible is Copyright 2019-2024 Google LLC, licensed under the Apache 2.0 license.
