forked from OCR-D/core
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
40 lines (37 loc) · 945 Bytes
/
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
# -*- coding: utf-8 -*-
import codecs
from setuptools import setup, find_packages
with codecs.open('README.rst', encoding='utf-8') as f:
README = f.read()
setup(
name='ocrd',
version='0.8.5',
description='OCR-D framework',
long_description=README,
author='Kay-Michael Würzner, Konstantin Baierer',
author_email='[email protected]',
url='https://github.com/OCR-D/pyocrd',
license='Apache License 2.0',
packages=find_packages(exclude=('tests', 'docs')),
include_package_data=True,
install_requires=[
'Flask',
'Pillow',
'click',
'jsonschema',
'lxml',
'numpy',
'opencv-python',
'pyyaml',
'requests',
'Deprecated == 1.2.0',
],
package_data={
'': ['*.json', '*.yml', '*.yaml', '*.bash', '*.xml'],
},
entry_points={
'console_scripts': [
'ocrd=ocrd.cli:cli',
]
},
)