9 lines
184 B
Python
9 lines
184 B
Python
import pkg_resources
|
|
try:
|
|
__version__ = pkg_resources.get_distribution(__name__).version
|
|
except pkg_resources.DistributionNotFound:
|
|
pass
|
|
|
|
from .hdl import *
|
|
from .lib import *
|