We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents c4df3d6 + ad3db18 commit 35e0ae0Copy full SHA for 35e0ae0
qurator/__init__.py
setup.py
@@ -1,5 +1,5 @@
1
from io import open
2
-from setuptools import find_packages, setup
+from setuptools import find_namespace_packages, setup
3
4
with open('requirements.txt') as fp:
5
install_requires = fp.read()
@@ -15,9 +15,7 @@
15
keywords='qurator',
16
license='Apache',
17
url="https://qurator.ai",
18
- namespace_packages=['qurator'],
19
- packages=find_packages(exclude=["*.tests", "*.tests.*",
20
- "tests.*", "tests"]),
+ packages=find_namespace_packages(include=['qurator']),
21
install_requires=install_requires,
22
package_data={
23
'': ['*.json'],
0 commit comments