mirror of
https://github.com/qurator-spk/sbb_ner.git
synced 2025-07-01 23:19:58 +02:00
fix namespace pkg setup
This commit is contained in:
parent
e7b07596db
commit
c90c639624
1 changed files with 3 additions and 4 deletions
5
setup.py
5
setup.py
|
@ -1,5 +1,5 @@
|
||||||
from io import open
|
from io import open
|
||||||
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()
|
||||||
|
@ -15,8 +15,7 @@ setup(
|
||||||
keywords='qurator',
|
keywords='qurator',
|
||||||
license='Apache',
|
license='Apache',
|
||||||
url="https://qurator.ai",
|
url="https://qurator.ai",
|
||||||
packages=find_packages(exclude=["*.tests", "*.tests.*",
|
packages=find_namespace_packages(include=['qurator']),
|
||||||
"tests.*", "tests"]),
|
|
||||||
install_requires=install_requires,
|
install_requires=install_requires,
|
||||||
entry_points={
|
entry_points={
|
||||||
'console_scripts': [
|
'console_scripts': [
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue