Skip to content

Commit

Permalink
changed from find_packages to find_namespace_packages method
Browse files Browse the repository at this point in the history
  • Loading branch information
ccbogel authored May 12, 2023
1 parent 2ac5c68 commit c84b14d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
""" from setup example: https://github.com/pypa/sampleproject/blob/master/setup.py
"""
import sys
from setuptools import setup, find_packages
from setuptools import setup, find_namespace_packages
from os import path
here = path.abspath(path.dirname(__file__))
# Get the long description from the README file
Expand Down Expand Up @@ -54,7 +54,7 @@
'Development Status :: 3 - Alpha'
],
keywords='qualitative data analysis',
packages=find_packages(include=['qualcoder','qualcoder.*']),
packages=find_namespace_packages(include=['qualcoder','qualcoder.*']),
python_requires='>=3.7',
install_requires=[
'pyqt6',
Expand Down

0 comments on commit c84b14d

Please sign in to comment.