1
0
Fork 0
mirror of https://github.com/qurator-spk/sbb_ner.git synced 2025-07-01 06:59:58 +02:00
This commit is contained in:
Robert Sachunsky 2024-11-29 04:11:45 +00:00 committed by GitHub
commit e0d82ca7be
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
7 changed files with 3 additions and 10 deletions

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

@ -1,5 +1,5 @@
from io import open
from setuptools import find_packages, setup
from setuptools import find_namespace_packages, setup
with open('requirements.txt') as fp:
install_requires = fp.read()
@ -15,8 +15,7 @@ setup(
keywords='qurator',
license='Apache',
url="https://qurator.ai",
packages=find_packages(exclude=["*.tests", "*.tests.*",
"tests.*", "tests"]),
packages=find_namespace_packages(include=['qurator']),
install_requires=install_requires,
entry_points={
'console_scripts': [
@ -40,4 +39,4 @@ setup(
'Programming Language :: Python :: 3',
'Topic :: Scientific/Engineering :: Artificial Intelligence',
],
)
)