From 996c381dffcf11e0468d3d98463ce35637a06458 Mon Sep 17 00:00:00 2001 From: quillotm Date: Wed, 18 Aug 2021 16:56:14 +0200 Subject: [PATCH] New init files in order to take into account the core when installing volia via setup.py --- volia/__init__.py | 3 ++- volia/core/__init__.py | 0 2 files changed, 2 insertions(+), 1 deletion(-) create mode 100644 volia/core/__init__.py diff --git a/volia/__init__.py b/volia/__init__.py index 463bd58..807a029 100644 --- a/volia/__init__.py +++ b/volia/__init__.py @@ -8,4 +8,5 @@ """ import sys import os -sys.path.append(os.path.dirname(__file__)) + +sys.path.append(os.path.dirname(__file__)) \ No newline at end of file diff --git a/volia/core/__init__.py b/volia/core/__init__.py new file mode 100644 index 0000000..e69de29 -- 1.8.2.3