mirror of
https://github.com/qurator-spk/page2tsv.git
synced 2025-07-29 03:39:52 +02:00
fix namespace pkg setup
This commit is contained in:
parent
352783cf7c
commit
133a9a5d01
1 changed files with 2 additions and 3 deletions
5
setup.py
5
setup.py
|
@ -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,8 +18,7 @@ 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,
|
||||||
package_data={
|
package_data={
|
||||||
'': ['*.json']
|
'': ['*.json']
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue