From 66f2f2708d28f96c8198dce68acd68db372c7d2c Mon Sep 17 00:00:00 2001
From: Markus Scheidgen <markus.scheidgen@gmail.com>
Date: Thu, 31 Jan 2019 12:46:02 +0100
Subject: [PATCH] Fixed setup.py to install submodules.

---
 setup.py | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/setup.py b/setup.py
index 33f38fa..159d49e 100644
--- a/setup.py
+++ b/setup.py
@@ -12,7 +12,7 @@
 #   See the License for the specific language governing permissions and
 #   limitations under the License.
 
-from setuptools import setup
+from setuptools import setup, find_packages
 
 
 def main():
@@ -24,7 +24,7 @@ def main():
         author_email='lauri.himanen@aalto.fi',
         license='GPL3',
         package_dir={'': './'},
-        packages=['cpmdparser'],
+        packages=find_packages(),
         include_package_data=True,
         install_requires=[
             'nomadcore',
-- 
GitLab