You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
664 B
Python
24 lines
664 B
Python
#!/usr/bin/env python3
|
|
# -*- coding: utf-8 -*-
|
|
from setuptools import setup
|
|
|
|
install_requires = open('requirements.txt').read().split('\n')
|
|
|
|
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.cli:main',
|
|
# 'ocrd-eynollah=eynollah.ocrd_cli:cli',
|
|
]
|
|
},
|
|
)
|