summaryrefslogtreecommitdiff
path: root/lib/sly/__init__.py
diff options
context:
space:
mode:
authorDaniel Friesel <daniel.friesel@uos.de>2019-12-12 17:33:13 +0100
committerDaniel Friesel <daniel.friesel@uos.de>2019-12-12 17:33:13 +0100
commitff6fc70456354b23663bee037c5e737a2b437ca8 (patch)
tree57397e592e664bf5f20b72032be887557bc2df08 /lib/sly/__init__.py
parent575a33b819d29ee99fa7d4264a943043d1d64032 (diff)
import SLY
Diffstat (limited to 'lib/sly/__init__.py')
-rw-r--r--lib/sly/__init__.py6
1 files changed, 6 insertions, 0 deletions
diff --git a/lib/sly/__init__.py b/lib/sly/__init__.py
new file mode 100644
index 0000000..3c1e708
--- /dev/null
+++ b/lib/sly/__init__.py
@@ -0,0 +1,6 @@
+
+from .lex import *
+from .yacc import *
+
+__version__ = "0.4"
+__all__ = [ *lex.__all__, *yacc.__all__ ]