17 lines
429 B
Python
17 lines
429 B
Python
__appname__ = 'hy'
|
|
try:
|
|
from hy.version import __version__
|
|
except ImportError:
|
|
__version__ = 'unknown'
|
|
|
|
|
|
from hy.models import HyExpression, HyInteger, HyKeyword, HyComplex, HyString, HyBytes, HySymbol, HyFloat, HyDict, HyList, HySet # NOQA
|
|
|
|
|
|
import hy.importer # NOQA
|
|
# we import for side-effects.
|
|
|
|
|
|
from hy.core.language import read, read_str, mangle, unmangle # NOQA
|
|
from hy.importer import hy_eval as eval # NOQA
|