-
Notifications
You must be signed in to change notification settings - Fork 6
/
setup.py
33 lines (30 loc) · 1.19 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
# -*- coding: utf-8 -*-
import codecs
from setuptools import setup, find_packages
setup(
name='ocrd_pc_segmentation',
version='0.2.3',
description='pixel-classifier based page segmentation',
long_description=codecs.open('README.md', encoding='utf-8').read(),
long_description_content_type='text/markdown',
author='Alexander Gehrke, Christian Reul, Christoph Wick',
url='https://github.com/ocr-d-modul-2-segmentierung/ocrd-pixelclassifier-segmentation',
packages=find_packages(exclude=('tests', 'docs')),
install_requires=open("requirements.in").read().split("\n"),
package_data={
'': ['*.json', '*.yml', '*.yaml'],
},
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache Software License",
"Topic :: Scientific/Engineering :: Image Recognition"
],
entry_points={
'console_scripts': [
'ocrd-pc-segmentation=ocrd_pc_segmentation.cli:ocrd_pc_segmentation',
]
},
data_files=[('', ["requirements.txt"])],
include_package_data=True,
)