This commit is contained in:
Pavol Rusnak 2016-10-17 14:17:18 +02:00
parent d1397c779c
commit 883ebf0e03
No known key found for this signature in database
GPG Key ID: 91F3B339B9A02A3D
3 changed files with 28 additions and 0 deletions

1
.gitignore vendored
View File

@ -10,3 +10,4 @@ distribute-*.egg
distribute-*.tar.gz
docs/_build
docs/.docs-build-environment
.tox/

4
requirements.txt Normal file
View File

@ -0,0 +1,4 @@
ecdsa>=0.9
protobuf>=2.6.1
mnemonic>=0.8
hidapi>=0.7.99

23
tox.ini Normal file
View File

@ -0,0 +1,23 @@
# To test against multiple python versions
#
# 1. Install those Python versions.
# On Ubuntu we suggest the deadsnakes PPA
# https://launchpad.net/~fkrull/+archive/ubuntu/deadsnakes
#
# 2. Install Tox (e.g. with pip)
# pip install Tox
#
# 3. Run Tox
# tox
[tox]
envlist =
py27,
py34,
py35,
[testenv]
deps =
-rrequirements.txt
commands =
python -c 'import trezorlib'