codemp-sublime/lib/codemp/__init__.py
cschen 6c54a15560 feat: move the library to be bundled together with the repo directly.
This approach will allow us to install directly through package control
by just specifying the repo!


Former-commit-id: 3df245186298042dfd4d8e0bf65844a283a571dd
2024-09-07 14:24:51 +02:00

5 lines
No EOL
107 B
Python

from .codemp import *
__doc__ = codemp.__doc__
if hasattr(codemp, "__all__"):
__all__ = codemp.__all__