Switched from pubsubs to my own localpubsub library. Set to specific version.

This commit is contained in:
SimLeek
2019-01-22 21:58:49 -07:00
parent b1ad31cc6b
commit b7baf00a37
9 changed files with 131 additions and 74 deletions

View File

@ -13,7 +13,8 @@ with open('cvpubsubs/__init__.py', 'r') as f:
with open('README.md', 'r', encoding='utf-8') as f:
readme = f.read()
REQUIRES = ['pubsub', 'numpy', 'opencv_python']
with open('requirements.txt', 'r', encoding='utf-8') as f:
REQUIRES = f.readlines()
setup(
name='CVPubSubs',