pull/16/merge
Robert Sachunsky committed by GitHub
commit 39cfb49ddd
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -1 +0,0 @@
__import__('pkg_resources').declare_namespace(__name__)

@ -1,2 +0,0 @@
__import__('pkg_resources').declare_namespace(__name__)

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

Loading…
Cancel
Save