From 9b0bd6278dbfebd2c62e68caa82341373f6bb14e Mon Sep 17 00:00:00 2001 From: Tim Schubert Date: Wed, 22 Aug 2018 13:29:35 +0200 Subject: [PATCH] Fix: find_namespace_packages is not compatible with alpine linux container version of python3 --- setup.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index 76ec21c..afc2322 100644 --- a/setup.py +++ b/setup.py @@ -1,4 +1,4 @@ -from setuptools import setup, find_namespace_packages +from setuptools import setup, find_packages setup( name='abgabesystem', @@ -10,7 +10,7 @@ setup( author='Tim Schubert', author_email='abgabesystem@timschubert.net', package_dir={'': 'src'}, - packages=find_namespace_packages(where='src'), + packages=find_packages(where='src'), install_requires=[ 'python-gitlab', ],