Skip to content
Snippets Groups Projects
Commit b118f906 authored by Konstantin Baierer's avatar Konstantin Baierer
Browse files

init

parents
No related branches found
No related tags found
No related merge requests found
*.egg-info
*.pyc
*pycache*
from github import Github
def analyze_kwalitee(url):
ret = {}
setup.py 0 → 100644
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
from ocrd_utils import VERSION
install_requires = open('requirements.txt').read().split('\n')
install_requires.append('ocrd_utils == %s' % VERSION)
setup(
name='ocrd_kwalitee',
version=VERSION,
description='OCR-D framework MP kwalitee check',
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/core',
license='Apache License 2.0',
packages=find_packages(exclude=('tests', 'docs')),
include_package_data=True,
install_requires=install_requires,
package_data={
'': ['*.json', '*.yml', '*.yaml', '*.bash', '*.xml'],
},
entry_points={
'console_scripts': [
'ocrd=ocrd.cli:cli',
]
},
)
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment