mirror of
https://github.com/kennethreitz/simplemind.git
synced 2026-06-05 14:50:16 +00:00
12 lines
249 B
Python
12 lines
249 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
|
|
import simplemind as sm
|
|
|
|
__all__ = ["simplemind", "sm"]
|