Skip to content

Commit

Permalink
fix namespace pkg setup
Browse files Browse the repository at this point in the history
  • Loading branch information
bertsky committed May 24, 2024
1 parent f88ee99 commit 45bd76f
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,4 +1,4 @@
from setuptools import setup, find_packages
from setuptools import setup, find_namespace_packages
from json import load

install_requires = open('requirements.txt').read().split('\n')
Expand All @@ -13,7 +13,7 @@
author='Vahid Rezanezhad',
url='https://github.com/qurator-spk/eynollah',
license='Apache License 2.0',
packages=find_packages(exclude=['tests']),
packages=find_namespace_packages(include=['qurator']),
install_requires=install_requires,
package_data={
'': ['*.json']
Expand Down

0 comments on commit 45bd76f

Please sign in to comment.