Metadata-Version: 2.4
Name: verilator
Version: 5.48.0
Summary: Python wrapping/binding for verilator
Project-URL: Repository, https://github.com/dau-dev/verilator-python
Project-URL: Homepage, https://github.com/dau-dev/verilator-python
Author-email: the verilator-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
Requires-Dist: systemc
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

# verilator

Python wrapping/binding for verilator

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

## Overview

Wrapper of [verilator](https://github.com/verilator/verilator), distributed via pypi. Includes some extra conveniences.

```bash
# Pass-through to verilator
verilator-cli sv/*.sv --timing --trace --assert --cc -Isv --top-module top --build -j 0 --exe sv/sim_sv.cpp

# Wrapper
verilator-cli build sv/*.sv --includes sv --top-module top --exe sv/sim_sv.cpp
```

## License

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

Verilator is Copyright 2003-2026 by Wilson Snyder. Verilator is free software subject to either the GNU Lesser General Public License Version 3 or the Perl Artistic License Version 2.0.

> [!NOTE]
> This library was generated using [copier](https://copier.readthedocs.io/en/stable/) from the [Base Python Project Template repository](https://github.com/python-project-templates/base).
