├── .gitignore ├── .travis.yml ├── AUTHORS.rst ├── CHANGES.rst ├── CONTRIBUTING.rst ├── LICENSE.rst ├── MANIFEST.in ├── README.rst ├── docs ├── Makefile ├── api.rst ├── authors.rst ├── changelog.rst ├── conf.py ├── contributing.rst ├── index.rst ├── install.rst ├── license.rst └── versioning.rst ├── makefile ├── requirements.txt ├── setup.cfg ├── setup.py ├── tests ├── __init__.py ├── fixtures.py └── test_verify.py ├── tox.ini └── verify ├── __init__.py ├── __meta__.py ├── base.py ├── containers.py ├── equality.py ├── logic.py ├── numbers.py ├── runners.py └── types.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgilland/verify/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgilland/verify/HEAD/.travis.yml -------------------------------------------------------------------------------- /AUTHORS.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgilland/verify/HEAD/AUTHORS.rst -------------------------------------------------------------------------------- /CHANGES.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgilland/verify/HEAD/CHANGES.rst -------------------------------------------------------------------------------- /CONTRIBUTING.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgilland/verify/HEAD/CONTRIBUTING.rst -------------------------------------------------------------------------------- /LICENSE.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgilland/verify/HEAD/LICENSE.rst -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgilland/verify/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgilland/verify/HEAD/README.rst -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgilland/verify/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/api.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgilland/verify/HEAD/docs/api.rst -------------------------------------------------------------------------------- /docs/authors.rst: -------------------------------------------------------------------------------- 1 | .. include:: ../AUTHORS.rst 2 | -------------------------------------------------------------------------------- /docs/changelog.rst: -------------------------------------------------------------------------------- 1 | .. include:: ../CHANGES.rst 2 | -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgilland/verify/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/contributing.rst: -------------------------------------------------------------------------------- 1 | .. include:: ../CONTRIBUTING.rst 2 | -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgilland/verify/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/install.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgilland/verify/HEAD/docs/install.rst -------------------------------------------------------------------------------- /docs/license.rst: -------------------------------------------------------------------------------- 1 | .. include:: ../LICENSE.rst -------------------------------------------------------------------------------- /docs/versioning.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgilland/verify/HEAD/docs/versioning.rst -------------------------------------------------------------------------------- /makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgilland/verify/HEAD/makefile -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgilland/verify/HEAD/requirements.txt -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgilland/verify/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgilland/verify/HEAD/setup.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/fixtures.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgilland/verify/HEAD/tests/fixtures.py -------------------------------------------------------------------------------- /tests/test_verify.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgilland/verify/HEAD/tests/test_verify.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgilland/verify/HEAD/tox.ini -------------------------------------------------------------------------------- /verify/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgilland/verify/HEAD/verify/__init__.py -------------------------------------------------------------------------------- /verify/__meta__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgilland/verify/HEAD/verify/__meta__.py -------------------------------------------------------------------------------- /verify/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgilland/verify/HEAD/verify/base.py -------------------------------------------------------------------------------- /verify/containers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgilland/verify/HEAD/verify/containers.py -------------------------------------------------------------------------------- /verify/equality.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgilland/verify/HEAD/verify/equality.py -------------------------------------------------------------------------------- /verify/logic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgilland/verify/HEAD/verify/logic.py -------------------------------------------------------------------------------- /verify/numbers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgilland/verify/HEAD/verify/numbers.py -------------------------------------------------------------------------------- /verify/runners.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgilland/verify/HEAD/verify/runners.py -------------------------------------------------------------------------------- /verify/types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgilland/verify/HEAD/verify/types.py --------------------------------------------------------------------------------