Merge pull request #45 from Seanjimon/add_tqdm_dependency

Add tqdm as required package. Otherwise missing dependency.
This commit is contained in:
Grigori Goronzy 2018-09-20 18:06:10 +02:00 committed by GitHub
commit 5ab2a73411
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
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"]
},