https://github.com/nigma/pywt
Raw File
Tip revision: 035e1fa14c2cd70ca270da20b1523e834a7ae635 authored by Filip Wasilewski on 29 July 2015, 18:25:19 UTC
Update readme to indicate https://github.com/PyWavelets as the new project home
Tip revision: 035e1fa
tox.ini
# Tox (http://tox.testrun.org/) is a tool for running tests
# in multiple virtualenvs. This configuration file will run the
# test suite on all supported python versions. To use it, "pip install tox"
# and then run "tox" from this directory.

[tox]
envlist = py26, py27

[testenv]
commands =
    {envpython} -V
    {envpython} setup.py test
    flake8 --exit-zero util demo src\pywt

deps =
    flake8
    cython
    numpy
back to top