1
0
Fork 0
mirror of https://github.com/qurator-spk/page2tsv.git synced 2026-03-15 11:42:06 +01:00

extract TSV Tools from qurator-spk/neath

This commit is contained in:
cneud 2019-12-16 16:37:47 +01:00
parent 92a81a869c
commit 59a1e81243
4 changed files with 299 additions and 2 deletions

36
setup.py Normal file
View file

@ -0,0 +1,36 @@
from io import open
from setuptools import find_packages, setup
with open('requirements.txt') as fp:
install_requires = fp.read()
setup(
name="neath",
version="0.0.1",
author="",
author_email="qurator@sbb.spk-berlin.de",
description="neath",
long_description=open("README.md", "r", encoding='utf-8').read(),
long_description_content_type="text/markdown",
keywords='qurator',
license='Apache License 2.0',
url="https://github.com/qurator-spk/neath",
packages=find_packages(exclude=["*.tests", "*.tests.*",
"tests.*", "tests"]),
install_requires=install_requires,
entry_points={
'console_scripts': [
"extract-doc-links=cli:extract_document_links",
"annotate-tsv=cli:annotate_tsv",
"page2tsv=cli:page2tsv"
]
},
python_requires='>=3.6.0',
tests_require=['pytest'],
classifiers=[
'Intended Audience :: Science/Research',
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python :: 3',
'Topic :: Scientific/Engineering :: Artificial Intelligence',
],
)