-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
25 lines (23 loc) · 800 Bytes
/
setup.py
File metadata and controls
25 lines (23 loc) · 800 Bytes
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
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
install_requires = open('requirements.txt').read().split('\n')
setup(
name='ocrmultieval',
version='0.0.1',
description='Frontend to multiple OCR evaluation tools',
long_description=open('README.md').read(),
long_description_content_type='text/markdown',
author='Konstantin Baierer',
author_email='unixprog@gmail.com',
url='https://github.com/OCR-D/ocrmultieval',
license='Apache License 2.0',
packages=find_packages(exclude=('tests', 'docs')),
include_package_data=True,
install_requires=install_requires,
entry_points={
'console_scripts': [
'ocrmultieval=ocrmultieval.cli:cli',
'ocrd-ocrmultieval=ocrmultieval.ocrd_cli:cli',
]
},
)