extend setup.py, add Makefile, gitignore, requirements.txt

This commit is contained in:
Konstantin Baierer 2020-11-20 17:37:35 +01:00
parent 59b2dcb619
commit f229907e41
8 changed files with 235 additions and 15 deletions

View file

@ -1,6 +1,23 @@
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
from setuptools import setup
import setuptools
from numpy.distutils.core import Extension, setup
install_requires = open('requirements.txt').read().split('\n')
setup(name='eynollah',version=1.0,packages=['sbb_newspapers_org_image'])
setup(
name='eynollah',
version='0.0.1',
long_description=open('README.md').read(),
long_description_content_type='text/markdown',
author='Vahid Rezanezhad',
url='https://github.com/qurator-spk/eynollah',
license='Apache License 2.0',
packages=['sbb_newspapers_org_image'],
install_requires=install_requires,
entry_points={
'console_scripts': [
'eynollah=sbb_newspapers_org_image.eynollah:main',
# 'ocrd-eynollah=eynollah.ocrd_cli:cli',
]
},
)