├── .coveragerc ├── .gitignore ├── .travis.yml ├── LICENSE ├── README.md ├── conda.recipe ├── build.sh └── meta.yaml ├── setup.py └── thedoctor ├── __init__.py ├── tests ├── __init__.py ├── test_integration.py ├── test_utils.py ├── test_validators.py └── utils.py └── validators.py /.coveragerc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhuuggoo/thedoctor/HEAD/.coveragerc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhuuggoo/thedoctor/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhuuggoo/thedoctor/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhuuggoo/thedoctor/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhuuggoo/thedoctor/HEAD/README.md -------------------------------------------------------------------------------- /conda.recipe/build.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | $PYTHON setup.py install 3 | -------------------------------------------------------------------------------- /conda.recipe/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhuuggoo/thedoctor/HEAD/conda.recipe/meta.yaml -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhuuggoo/thedoctor/HEAD/setup.py -------------------------------------------------------------------------------- /thedoctor/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhuuggoo/thedoctor/HEAD/thedoctor/__init__.py -------------------------------------------------------------------------------- /thedoctor/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /thedoctor/tests/test_integration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhuuggoo/thedoctor/HEAD/thedoctor/tests/test_integration.py -------------------------------------------------------------------------------- /thedoctor/tests/test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhuuggoo/thedoctor/HEAD/thedoctor/tests/test_utils.py -------------------------------------------------------------------------------- /thedoctor/tests/test_validators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhuuggoo/thedoctor/HEAD/thedoctor/tests/test_validators.py -------------------------------------------------------------------------------- /thedoctor/tests/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhuuggoo/thedoctor/HEAD/thedoctor/tests/utils.py -------------------------------------------------------------------------------- /thedoctor/validators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhuuggoo/thedoctor/HEAD/thedoctor/validators.py --------------------------------------------------------------------------------