Release preparation.
[python-bulletml.git] / bulletml / __init__.py
1 """BulletML parser.
2
3 http://www.asahi-net.or.jp/~cs8k-cyu/bulletml/index_e.html
4 """
5
6 from bulletml.parser import BulletML
7 from bulletml.impl import Bullet, Action
8
9 VERSION = (1, 0)
10 VERSION_STRING = ".".join(map(str, VERSION))