Updated major version due to breaking changes. Reformatted files and imports. Removed unused ctrl commands. Made all pubsub channels camel case. changed sub_win_loop to class. Removed implementation specific code. Removed unreliable 'x to quit' code. Made windows quit from pubsub. Added WinCtrl class for window specific commands. Added threaded interactive key press test. Removed testt file.

This commit is contained in:
SimLeek
2018-04-08 14:12:02 -07:00
parent 496a5eaffe
commit 2b7899377e
12 changed files with 143 additions and 105 deletions
+5 -2
View File
@@ -1,9 +1,10 @@
from distutils.core import setup
from setuptools import find_packages
setup(
name= 'cv_pubsubs',
packages = ['cv_pubsubs', 'cv_pubsubs.webcam_pub', 'cv_pubsubs.window_sub'],
version='0.1',
version='1.0.0',
packages = find_packages(),
description='Pubsub interface for Python OpenCV',
author='Josh Miklos',
author_email='simulatorleek@gmail.com',
@@ -16,5 +17,7 @@ setup(
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
]
)