mirror of
https://github.com/YosysHQ/nextpnr.git
synced 2026-02-23 15:52:28 +00:00
13 lines
217 B
Python
13 lines
217 B
Python
# -*- coding: utf-8 -*-
|
|
|
|
from ._version import version_info, __version__
|
|
from .commands import get_include, get_cmake_dir
|
|
|
|
|
|
__all__ = (
|
|
"version_info",
|
|
"__version__",
|
|
"get_include",
|
|
"get_cmake_dir",
|
|
)
|