Release preparation.
[python-bulletml.git] / bulletml / __init__.py
index e69de29..1e0fcdf 100644 (file)
@@ -0,0 +1,10 @@
+"""BulletML parser.
+
+http://www.asahi-net.or.jp/~cs8k-cyu/bulletml/index_e.html
+"""
+
+from bulletml.parser import BulletML
+from bulletml.impl import Bullet, Action
+
+VERSION = (1, 0)
+VERSION_STRING = ".".join(map(str, VERSION))