Skip to content

Commit

Permalink
Update PyPI package for v0.3.3 release.
Browse files Browse the repository at this point in the history
  • Loading branch information
Breakthrough committed Jan 28, 2016
1 parent be1e254 commit e9bded8
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
1 change: 1 addition & 0 deletions MANIFEST.in
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
include *.md
include *.rst
include LICENSE*
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ Video Scene Cut Detection and Analysis Tool

[![Documentation Status](https://readthedocs.org/projects/pyscenedetect/badge/?version=latest)](http://pyscenedetect.readthedocs.org/en/latest/?badge=latest) [![PyPI Status](https://img.shields.io/pypi/status/PySceneDetect.svg)](https://pypi.python.org/pypi/PySceneDetect/) [![PyPI Version](https://img.shields.io/pypi/v/PySceneDetect.svg)](https://pypi.python.org/pypi/PySceneDetect/) [![PyPI](https://img.shields.io/pypi/dm/PySceneDetect.svg)](https://pypi.python.org/pypi/PySceneDetect) [![PyPI License](https://img.shields.io/pypi/l/PySceneDetect.svg)](http://pyscenedetect.readthedocs.org/en/latest/copyright/)

### New Release: v0.3.3-beta (January 27, 2016)
### New Release: v0.3.3 (January 27, 2016)

Quick install; requires `numpy` and Python OpenCV `cv2` module, read [getting started guide](http://pyscenedetect.readthedocs.org/en/latest/examples/usage/) after install:

Expand Down
1 change: 0 additions & 1 deletion docs/download.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@ sudo pip install pyscenedetect
After installation, you can call PySceneDetect from any terminal/command prompt by typing `scenedetect` (try running `scenedetect --version` to verify that everything was installed correctly). Alternatively, you can install PySceneDetect from the source archives below.



<h3>Source (All Platforms) &nbsp; <span class="wy-text-neutral"><span class="fa fa-windows"></span> &nbsp; <span class="fa fa-linux"></span> &nbsp; <span class="fa fa-apple"></span></span></h3>

<div class="important">
Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
[metadata]
description-file = README.md
description-file = package-info.rst
6 changes: 3 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,9 @@ def get_requires():

setup(
name='PySceneDetect',
version='0.3.3',
version='0.3.3-0',
description="A cross-platform, OpenCV-based video scene detection program and Python library. ",
long_description=open('README.md').read(),
long_description=open('package-info.rst').read(),
author='Brandon Castellano',
author_email='[email protected]',
url='https://github.com/Breakthrough/PySceneDetect',
Expand All @@ -38,7 +38,7 @@ def get_requires():
#'VIDEOENC': ['moviepy']
},
packages=['scenedetect'],
package_data={'': ['../LICENSE*', '../USAGE.md']},
package_data={'': ['../LICENSE*', '../USAGE.md', '../package-info.rst']},
#include_package_data = True, # Only works with this line commented.
#test_suite="unitest.py",
entry_points={"console_scripts": ["scenedetect=scenedetect:main"]},
Expand Down

0 comments on commit e9bded8

Please sign in to comment.