X-Git-Url: https://git.yukkurigames.com/?p=python-bulletml.git;a=blobdiff_plain;f=bulletml%2F__init__.py;h=1e0fcdfa4611c063911bf8053fd44cf4f61c286d;hp=e69de29bb2d1d6434b8b29ae775ad8c2e48c5391;hb=c1021a77feb2c7b29572f77d83f81840dd339d91;hpb=2e1e64f1f8076dd21a5ea1e7f8af6dbb74946d57 diff --git a/bulletml/__init__.py b/bulletml/__init__.py index e69de29..1e0fcdf 100644 --- a/bulletml/__init__.py +++ b/bulletml/__init__.py @@ -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))