├── .gitignore ├── .travis.yml ├── README.md ├── README.rst ├── peakdetect ├── __init__.py └── peakdetect.py ├── requirements.txt ├── setup.py ├── stale.yml ├── test.py └── waveform.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avhn/peakdetect/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avhn/peakdetect/HEAD/.travis.yml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avhn/peakdetect/HEAD/README.md -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avhn/peakdetect/HEAD/README.rst -------------------------------------------------------------------------------- /peakdetect/__init__.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | 3 | from .peakdetect import * 4 | -------------------------------------------------------------------------------- /peakdetect/peakdetect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avhn/peakdetect/HEAD/peakdetect/peakdetect.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | numpy 2 | scipy 3 | -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avhn/peakdetect/HEAD/setup.py -------------------------------------------------------------------------------- /stale.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avhn/peakdetect/HEAD/stale.yml -------------------------------------------------------------------------------- /test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avhn/peakdetect/HEAD/test.py -------------------------------------------------------------------------------- /waveform.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avhn/peakdetect/HEAD/waveform.py --------------------------------------------------------------------------------