wheel_testing: added .whl file testing to travis. Added auto-deployment. Version fixed requirements.txt. Removed requirements.txt from setup.py.

This commit is contained in:
SimLeek
2019-02-19 23:25:13 -07:00
parent 5db1e21e49
commit 6cac03e941
3 changed files with 28 additions and 5 deletions

View File

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