mirror of
https://github.com/YosysHQ/sby.git
synced 2025-04-22 21:05:30 +00:00
10 lines
No EOL
314 B
Python
10 lines
No EOL
314 B
Python
from setuptools import setup, find_packages
|
|
setup(
|
|
name='SymbiYosys',
|
|
packages=['sby'],
|
|
version='0.1',
|
|
description='Front-end for Yosys-based formal verification flows',
|
|
author='Clifford Wolf',
|
|
author_email='clifford@clifford.at',
|
|
install_requires=[],
|
|
py_modules=find_packages()) |