1
0
Fork 0
mirror of https://github.com/qurator-spk/sbb_ner.git synced 2026-02-26 10:21:56 +01:00

re-structure repo

This commit is contained in:
Kai Labusch 2019-08-16 15:22:13 +02:00
commit 16e63b4673
24 changed files with 13072 additions and 0 deletions

38
setup.py Normal file
View file

@ -0,0 +1,38 @@
from io import open
from setuptools import find_packages, setup
with open('requirements.txt') as fp:
install_requires = fp.read()
setup(
name="qurator-sbb-ner",
version="0.0.1",
author="The Qurator Team",
author_email="qurator@sbb.spk-berlin.de",
description="Qurator",
long_description=open("README.md", "r", encoding='utf-8').read(),
long_description_content_type="text/markdown",
keywords='qurator',
license='Apache',
url="https://qurator.ai",
packages=find_packages(exclude=["*.tests", "*.tests.*",
"tests.*", "tests"]),
install_requires=install_requires,
entry_points={
'console_scripts': [
"compile_europeana_historic=qurator.sbb_ner.ground_truth.europeana_historic:main",
"compile_germ_eval=qurator.sbb_ner.ground_truth.germeval:main",
"compile_conll=qurator.sbb_ner.ground_truth.conll:main",
"compile_wikiner=qurator.sbb_ner.ground_truth.wikiner:main",
"bert-ner=qurator.sbb_ner.models.bert:main"
]
},
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',
],
)