nextpnr/3rdparty/pybind11/pybind11/__init__.py

13 lines
217 B
Python
Raw Normal View History

2021-01-02 17:15:39 +08:00
# -*- coding: utf-8 -*-
2020-07-23 14:58:19 +08:00
2021-01-02 17:15:39 +08:00
from ._version import version_info, __version__
from .commands import get_include, get_cmake_dir
2020-07-23 14:58:19 +08:00
2021-01-02 17:15:39 +08:00
__all__ = (
"version_info",
"__version__",
"get_include",
"get_cmake_dir",
)