-
-
Notifications
You must be signed in to change notification settings - Fork 255
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
v0.1.1 Initial release on Python Package Index (PyPI).
- Loading branch information
1 parent
51675a0
commit f313ced
Showing
2 changed files
with
12 additions
and
8 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
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,21 +1,25 @@ | ||
import setuptools | ||
from setuptools import setup | ||
|
||
with open("README.md", "r") as fh: | ||
long_description = fh.read() | ||
|
||
setup( | ||
name='vidgear', | ||
packages=['vidgear','vidgear.gears'], | ||
version='0.1.0', | ||
version='0.1.1', | ||
description='A OpenCV Python Multi-Threaded Video Streaming Wrapper Library', | ||
license='MIT License', | ||
author='abhiTronix', | ||
long_description=long_description, | ||
long_description_content_type="text/markdown", | ||
author_email='[email protected]', | ||
url='https://github.com/abhiTronix/vidgear', | ||
download_url='https://github.com/abhiTronix/vidgear/tarball/0.1.0', | ||
download_url='https://github.com/abhiTronix/vidgear/tarball/0.1.1', | ||
keywords=['computer vision', 'multi-thread', 'opencv', 'opencv2', 'opencv4', 'picamera'], | ||
classifiers=[ | ||
'Development Status :: 5 - Production/Stable', | ||
'Intended Audience :: Developers', | ||
'Topic :: Computer Vision :: Video Processing', | ||
'License :: OSI Approved :: MIT License', | ||
'Programming Language :: Python :: 2', | ||
'Programming Language :: Python :: 2.7', | ||
|