Fix: find_namespace_packages is not compatible with alpine linux container version of python3

This commit is contained in:
Tim Schubert 2018-08-22 13:29:35 +02:00
parent f31e045137
commit 9b0bd6278d

View file

@ -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',
],