diff --git a/core/__init__.py b/core/__init__.py index e61c0e56..07f7260b 100644 --- a/core/__init__.py +++ b/core/__init__.py @@ -21,6 +21,9 @@ sys.path.insert(0, LIBS_DIR) LIBS_DIR_COMMON = os.path.join(LIBS_DIR, 'common') sys.path.insert(0, LIBS_DIR_COMMON) +LIBS_DIR_CUSTOM = os.path.join(LIBS_DIR, 'custom') +sys.path.insert(0, LIBS_DIR_CUSTOM) + # init preliminaries SYS_ARGV = sys.argv[1:] APP_FILENAME = sys.argv[0] diff --git a/libs/synchronousdeluge/__init__.py b/libs/custom/synchronousdeluge/__init__.py similarity index 100% rename from libs/synchronousdeluge/__init__.py rename to libs/custom/synchronousdeluge/__init__.py diff --git a/libs/synchronousdeluge/client.py b/libs/custom/synchronousdeluge/client.py similarity index 100% rename from libs/synchronousdeluge/client.py rename to libs/custom/synchronousdeluge/client.py diff --git a/libs/synchronousdeluge/exceptions.py b/libs/custom/synchronousdeluge/exceptions.py similarity index 100% rename from libs/synchronousdeluge/exceptions.py rename to libs/custom/synchronousdeluge/exceptions.py diff --git a/libs/synchronousdeluge/protocol.py b/libs/custom/synchronousdeluge/protocol.py similarity index 100% rename from libs/synchronousdeluge/protocol.py rename to libs/custom/synchronousdeluge/protocol.py diff --git a/libs/synchronousdeluge/transfer.py b/libs/custom/synchronousdeluge/transfer.py similarity index 100% rename from libs/synchronousdeluge/transfer.py rename to libs/custom/synchronousdeluge/transfer.py diff --git a/libs/utorrent/__init__.py b/libs/custom/utorrent/__init__.py similarity index 100% rename from libs/utorrent/__init__.py rename to libs/custom/utorrent/__init__.py diff --git a/libs/utorrent/client.py b/libs/custom/utorrent/client.py similarity index 100% rename from libs/utorrent/client.py rename to libs/custom/utorrent/client.py diff --git a/libs/utorrent/upload.py b/libs/custom/utorrent/upload.py similarity index 100% rename from libs/utorrent/upload.py rename to libs/custom/utorrent/upload.py diff --git a/libs/requirements-custom.txt b/libs/requirements-custom.txt new file mode 100644 index 00000000..2ffbb20a --- /dev/null +++ b/libs/requirements-custom.txt @@ -0,0 +1,2 @@ +synchronousdeluge +utorrent