-
Notifications
You must be signed in to change notification settings - Fork 27
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
4c1abc6
commit 47300d6
Showing
6 changed files
with
40 additions
and
2 deletions.
There are no files selected for viewing
File renamed without changes.
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
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
File renamed without changes.
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 |
---|---|---|
@@ -0,0 +1,3 @@ | ||
numpy | ||
opencv-python | ||
peakutils |
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 |
---|---|---|
@@ -0,0 +1,35 @@ | ||
import sys | ||
from setuptools import setup, find_packages | ||
from setuptools.command.install import install | ||
from setuptools.command.develop import develop | ||
from setuptools.command.egg_info import egg_info | ||
|
||
setup( | ||
name="key-frame-detector", | ||
version="1.0.0", | ||
author="Joel Ibaceta", | ||
author_email="[email protected]", | ||
license='MIT', | ||
description="It is a simple python tool to extract key frame images from video", | ||
long_description="A simple tool to detect and extract key frame images from a video file", | ||
url="https://github.com/joelibaceta/video-keyframe-extractor", | ||
project_urls={ | ||
'Source': 'https://github.com/joelibaceta/video-keyframe-extractor', | ||
'Tracker': 'https://github.com/joelibaceta/video-keyframe-extractor/issues' | ||
}, | ||
packages=find_packages(), | ||
include_package_data=True, | ||
install_requires=['opencv-python', 'numpy', 'peakutils'], | ||
classifiers=[ | ||
"Programming Language :: Python :: 3", | ||
"Intended Audience :: Developers", | ||
"License :: OSI Approved :: MIT License", | ||
"Operating System :: OS Independent", | ||
], | ||
keywords='video key-frame terminal opencv extractor', | ||
entry_points={ | ||
"console_scripts": [ | ||
'key-frames-detector=KeyFrameDetector.cli:main' | ||
] | ||
} | ||
) |