diff --git a/SpiceBot/__init__.py b/SpiceBot/__init__.py index 2f02d2b..3458009 100644 --- a/SpiceBot/__init__.py +++ b/SpiceBot/__init__.py @@ -5,9 +5,16 @@ A Niche Wrapper around Sopel from __future__ import unicode_literals, absolute_import, division, print_function import os - import pathlib + +""" +`SCRIPT_DIR` is a very important variable to set early on. +This is the directory `main.py` has been called from. +This information will be use to dynamically set other variables later, as well as some default locations. +""" SCRIPT_DIR = pathlib.Path(os.path.dirname(os.path.abspath(__file__))) -print(SCRIPT_DIR) + +def setup(bot): + print(SCRIPT_DIR) diff --git a/SpiceBot/requirements.txt b/SpiceBot/requirements.txt new file mode 100644 index 0000000..e69de29