forked from metal3d/keras-video-generators
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
28 lines (25 loc) · 737 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
#!/usr/bin/env python
from setuptools import find_packages, setup
with open("README.md", "r") as fh:
long_description = fh.read()
setup(
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=[
"tensorflow>=2.5",
"numpy~=1.19.2",
"opencv-python",
"matplotlib",
"scipy",
],
)