mirror of
https://github.com/kiwix/kiwix-build.git
synced 2025-04-24 06:37:07 -04:00
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.
7 lines
83 B
Python
7 lines
83 B
Python
#!/usr/bin/env python3
|
|
|
|
from . import main
|
|
|
|
|
|
if __name__ == "__main__":
|
|
main()
|