
Currently it's just MultiReg, and there's no particularly good reason to privilege this specific CDC primitive so much.
8 lines
165 B
Python
8 lines
165 B
Python
import pkg_resources
|
|
try:
|
|
__version__ = pkg_resources.get_distribution(__name__).version
|
|
except pkg_resources.DistributionNotFound:
|
|
pass
|
|
|
|
from .hdl import *
|