mirror of
https://github.com/qurator-spk/eynollah.git
synced 2025-07-02 23:49:54 +02:00
extend setup.py, add Makefile, gitignore, requirements.txt
This commit is contained in:
parent
59b2dcb619
commit
f229907e41
8 changed files with 235 additions and 15 deletions
23
setup.py
23
setup.py
|
@ -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',
|
||||
]
|
||||
},
|
||||
)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue