-
Notifications
You must be signed in to change notification settings - Fork 32
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Use Tensorflow 2.5 now, go to 1.1 version
1.1 releases supports now tensorflow >=2.5 see #46
- Loading branch information
Showing
6 changed files
with
176 additions
and
158 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,27 +1,22 @@ | ||
#!/usr/bin/env python | ||
|
||
from setuptools import setup, find_packages | ||
from setuptools import find_packages, setup | ||
|
||
with open("README.md", "r") as fh: | ||
long_description = fh.read() | ||
|
||
setup( | ||
name='keras-video-generators', | ||
version='1.0.13', | ||
description='Keras sequence generators for video data', | ||
name="keras-video-generators", | ||
version="1.1.0", | ||
description="Keras sequence generators for video data", | ||
long_description=long_description, | ||
long_description_content_type="text/markdown", | ||
license='MIT', | ||
licence_file='LICENSE', | ||
author='Patrice Ferlet', | ||
author_email='[email protected]', | ||
url='https://github.com/metal3d/keras-video-generators', | ||
package_dir={'': 'src'}, | ||
packages=find_packages('src'), | ||
install_requires=[ | ||
'keras>=2', | ||
'numpy', | ||
'opencv-python', | ||
'matplotlib' | ||
] | ||
license="MIT", | ||
licence_file="LICENSE", | ||
author="Patrice Ferlet", | ||
author_email="[email protected]", | ||
url="https://github.com/metal3d/keras-video-generators", | ||
package_dir={"": "src"}, | ||
packages=find_packages("src"), | ||
install_requires=["tensorflow>=2.5", "numpy", "opencv-python", "matplotlib"], | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.