fix namespace pkg setup

pull/16/head
Robert Sachunsky 7 months ago committed by GitHub
parent 352783cf7c
commit 133a9a5d01
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -1,6 +1,6 @@
from io import open
from json import load
from setuptools import find_packages, setup
from setuptools import find_namespace_packages, setup
with open('requirements.txt') as fp:
install_requires = fp.read()
@ -18,8 +18,7 @@ setup(
keywords='qurator',
license='Apache License 2.0',
url="https://github.com/qurator-spk/neath",
packages=find_packages(exclude=["*.tests", "*.tests.*",
"tests.*", "tests"]),
packages=find_namespace_packages(include=['qurator']),
install_requires=install_requires,
package_data={
'': ['*.json']

Loading…
Cancel
Save