kiwix-build/kiwixbuild/__main__.py
Matthieu Gautier 97666b0fc9 Create a real module kiwixbuild and make it installable. Split files.
Make kiwix-build installable using pip.
Module is now called `kiwixbuild` because `kiwix-build` is not a valid
python identifier.

Also split toolchains in separated directory.
2018-04-04 15:43:16 +02:00

7 lines
83 B
Python

#!/usr/bin/env python3
from . import main
if __name__ == "__main__":
main()