-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
45 lines (41 loc) · 1.58 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
from io import open
from setuptools import find_packages, setup
with open('requirements.txt') as fp:
install_requires = fp.read()
setup(
name="qurator-sbb-tools",
version="0.0.4",
author="Kai Labusch, The Qurator Team",
author_email="[email protected]",
description="Qurator",
long_description=open("README.md", "r", encoding='utf-8').read(),
long_description_content_type="text/markdown",
keywords='Qurator',
license='Apache',
url="https://github.com/qurator-spk/sbb_tools",
packages=find_packages(exclude=["*.tests", "*.tests.*",
"tests.*", "tests"]),
install_requires=install_requires,
entry_points={
'console_scripts': [
"altotool=qurator.sbb.xml:altotool",
"alto-annotator=qurator.sbb.xml:altoannotator",
"corpusentropy=qurator.sbb.entropy:main",
"corpuslanguage=qurator.sbb.language:main",
"select-by-lang-and-entropy=qurator.sbb.select:by_lang_and_entropy",
"select-by-lang=qurator.sbb.select:by_lang",
"batchner=qurator.sbb.ner:on_db_file",
"ned-statistics=qurator.sbb.ned:ned_statistics",
"show-ner-models=qurator.sbb.ner:show_models",
"batchel=qurator.sbb.ned:run_on_corpus"
]
},
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',
],
)