add tqdm as required package. Otherwise missing dependency

This commit is contained in:
Simon Lemonnier 2018-09-20 17:15:42 +02:00
parent 83c0b47f62
commit 4a40d5613a
2 changed files with 2 additions and 2 deletions

View File

@ -11,7 +11,7 @@ python:
before_install:
- sudo apt install rpm dpkg-dev debhelper dh-python python3-setuptools fakeroot python3-serial python3-yaml
install:
- pip install pyserial pyusb tqdm
- pip install pyusb
script:
- python setup.py build
- python setup.py test

View File

@ -31,7 +31,7 @@ setup(
name = "stcgal",
version = stcgal.__version__,
packages = find_packages(exclude=["doc", "tests"]),
install_requires = ["pyserial"],
install_requires = ["pyserial", "tqdm"],
extras_require = {
"usb": ["pyusb>=1.0.0"]
},