mirror of
https://github.com/kennethreitz/simplemind.git
synced 2026-06-05 14:50:16 +00:00
11 lines
217 B
Python
11 lines
217 B
Python
import os
|
|
import sys
|
|
|
|
# Add the parent directory to the path so we can import the module.
|
|
sys.path.insert(0, os.path.abspath(os.path.join(os.path.dirname(__file__), "..")))
|
|
|
|
|
|
import simplemind as sm
|
|
|
|
__all__ = ["sm"]
|