.coveragerc
.gitignore
AUTHORS.md
AUTHORS.rst
CHANGELOG.rst
LICENSE.txt
README.md
README.rst
requirements.txt
setup.cfg
setup.py
test-requirements.txt
tox.ini
docs/Makefile
docs/authors.rst
docs/changelog.rst
docs/changes.rst
docs/conf.py
docs/index.rst
docs/license.rst
docs/_static/.gitignore
examples/models.py
examples/partial_document.py
examples/polymorphic_list.py
examples/validator.py
src/lupin/__init__.py
src/lupin/errors.py
src/lupin/mapper.py
src/lupin/mapping.py
src/lupin/object_factories.py
src/lupin/processors.py
src/lupin/schema.py
src/lupin/validators_combination.py
src/lupin.egg-info/PKG-INFO
src/lupin.egg-info/SOURCES.txt
src/lupin.egg-info/dependency_links.txt
src/lupin.egg-info/not-zip-safe
src/lupin.egg-info/requires.txt
src/lupin.egg-info/top_level.txt
src/lupin/fields/__init__.py
src/lupin/fields/bool.py
src/lupin/fields/compatibility.py
src/lupin/fields/constant.py
src/lupin/fields/date.py
src/lupin/fields/datetime_field.py
src/lupin/fields/dict.py
src/lupin/fields/field.py
src/lupin/fields/float.py
src/lupin/fields/int.py
src/lupin/fields/list.py
src/lupin/fields/number.py
src/lupin/fields/object.py
src/lupin/fields/polymorphic_list.py
src/lupin/fields/polymorphic_object.py
src/lupin/fields/string.py
src/lupin/validators/__init__.py
src/lupin/validators/between.py
src/lupin/validators/datetime_format.py
src/lupin/validators/dict_keys_format.py
src/lupin/validators/equal.py
src/lupin/validators/in_validator.py
src/lupin/validators/is_none.py
src/lupin/validators/length.py
src/lupin/validators/match.py
src/lupin/validators/type.py
src/lupin/validators/typed_dict.py
src/lupin/validators/url.py
src/lupin/validators/validator.py
tests/__init__.py
tests/conftest.py
tests/fixtures/__init__.py
tests/fixtures/book.py
tests/fixtures/jewel.py
tests/fixtures/money.py
tests/fixtures/painting.py
tests/fixtures/thief.py
tests/lupin/__init__.py
tests/lupin/conftest.py
tests/lupin/test_mapper.py
tests/lupin/test_mapping.py
tests/lupin/test_object_factories.py
tests/lupin/test_schema.py
tests/lupin/test_validators_and_combination.py
tests/lupin/test_validators_null_combination.py
tests/lupin/test_validators_or_combination.py
tests/lupin/fields/test_bool.py
tests/lupin/fields/test_compatibility.py
tests/lupin/fields/test_constant.py
tests/lupin/fields/test_date.py
tests/lupin/fields/test_datetime.py
tests/lupin/fields/test_dict.py
tests/lupin/fields/test_field.py
tests/lupin/fields/test_float.py
tests/lupin/fields/test_int.py
tests/lupin/fields/test_list.py
tests/lupin/fields/test_number.py
tests/lupin/fields/test_object.py
tests/lupin/fields/test_polymorphic_list.py
tests/lupin/fields/test_polymorphic_object.py
tests/lupin/fields/test_string.py
tests/lupin/processors/test_lower.py
tests/lupin/processors/test_null_processor.py
tests/lupin/processors/test_strip.py
tests/lupin/processors/test_upper.py
tests/lupin/validators/test_between.py
tests/lupin/validators/test_datetime_format.py
tests/lupin/validators/test_dict_keys_format.py
tests/lupin/validators/test_equal.py
tests/lupin/validators/test_in.py
tests/lupin/validators/test_is_none.py
tests/lupin/validators/test_length.py
tests/lupin/validators/test_match.py
tests/lupin/validators/test_type.py
tests/lupin/validators/test_typed_dict.py
tests/lupin/validators/test_url.py
tests/lupin/validators/test_validator.py