├── .coveragerc ├── .gitignore ├── .travis.yml ├── LICENSE.txt ├── MANIFEST.in ├── Makefile ├── README ├── README.rst ├── RELEASES.rst ├── setup.py ├── src └── measures.py ├── test_requirements.txt └── tests ├── __init__.py ├── acceptance ├── __init__.py └── test_measure.py └── unit ├── __init__.py └── test_measure.py /.coveragerc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/measures/HEAD/.coveragerc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/measures/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/measures/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/measures/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/measures/HEAD/Makefile -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/measures/HEAD/README -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- 1 | README -------------------------------------------------------------------------------- /RELEASES.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/measures/HEAD/RELEASES.rst -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/measures/HEAD/setup.py -------------------------------------------------------------------------------- /src/measures.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/measures/HEAD/src/measures.py -------------------------------------------------------------------------------- /test_requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/measures/HEAD/test_requirements.txt -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/acceptance/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/measures/HEAD/tests/acceptance/__init__.py -------------------------------------------------------------------------------- /tests/acceptance/test_measure.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/measures/HEAD/tests/acceptance/test_measure.py -------------------------------------------------------------------------------- /tests/unit/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/unit/test_measure.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/measures/HEAD/tests/unit/test_measure.py --------------------------------------------------------------------------------