mirror of
https://github.com/qurator-spk/eynollah.git
synced 2025-06-08 03:40:06 +02:00
Merge pull request #18 from qurator-spk/keras-23
restrict keras version to < 2.4
This commit is contained in:
commit
8ab50a5486
2 changed files with 5 additions and 6 deletions
|
@ -1,7 +1,8 @@
|
||||||
# ocrd includes opencv, numpy, shapely, click
|
# ocrd includes opencv, numpy, shapely, click
|
||||||
ocrd >= 2.20.1
|
ocrd >= 2.20.3
|
||||||
keras >= 2.3.1
|
keras >= 2.3.1, < 2.4
|
||||||
scikit-learn >= 0.23.2
|
scikit-learn >= 0.23.2
|
||||||
tensorflow-gpu >= 1.15, < 2
|
tensorflow-gpu >= 1.15, < 2
|
||||||
imutils >= 0.5.3
|
imutils >= 0.5.3
|
||||||
matplotlib
|
matplotlib
|
||||||
|
setuptools >= 50
|
||||||
|
|
6
setup.py
6
setup.py
|
@ -1,6 +1,4 @@
|
||||||
#!/usr/bin/env python3
|
from setuptools import setup, find_packages
|
||||||
# -*- coding: utf-8 -*-
|
|
||||||
from setuptools import setup
|
|
||||||
|
|
||||||
install_requires = open('requirements.txt').read().split('\n')
|
install_requires = open('requirements.txt').read().split('\n')
|
||||||
|
|
||||||
|
@ -12,7 +10,7 @@ setup(
|
||||||
author='Vahid Rezanezhad',
|
author='Vahid Rezanezhad',
|
||||||
url='https://github.com/qurator-spk/eynollah',
|
url='https://github.com/qurator-spk/eynollah',
|
||||||
license='Apache License 2.0',
|
license='Apache License 2.0',
|
||||||
packages=['sbb_newspapers_org_image'],
|
packages=find_packages(),
|
||||||
install_requires=install_requires,
|
install_requires=install_requires,
|
||||||
entry_points={
|
entry_points={
|
||||||
'console_scripts': [
|
'console_scripts': [
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue