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.
23 lines
672 B
Python
23 lines
672 B
Python
from setuptools import setup, find_packages
|
|
|
|
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',
|
|
namespace_packages=['qurator'],
|
|
packages=find_packages(exclude=['tests']),
|
|
install_requires=install_requires,
|
|
entry_points={
|
|
'console_scripts': [
|
|
'eynollah=qurator.eynollah.cli:main',
|
|
# 'ocrd-eynollah=qurator.eynollah.ocrd_cli:cli',
|
|
]
|
|
},
|
|
)
|