Fix: find_namespace_packages is not compatible with alpine linux container version of python3
This commit is contained in:
parent
f31e045137
commit
9b0bd6278d
1 changed files with 2 additions and 2 deletions
4
setup.py
4
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',
|
||||
],
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue