├── LICENSE.md ├── Pipfile ├── README.md ├── setup.py ├── src └── ormantic │ ├── __init__.py │ ├── exceptions.py │ ├── fields.py │ └── models.py └── tests ├── test_columns.py ├── test_foreignkey.py └── test_models.py /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesometoolbox/ormantic/HEAD/LICENSE.md -------------------------------------------------------------------------------- /Pipfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesometoolbox/ormantic/HEAD/Pipfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesometoolbox/ormantic/HEAD/README.md -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesometoolbox/ormantic/HEAD/setup.py -------------------------------------------------------------------------------- /src/ormantic/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesometoolbox/ormantic/HEAD/src/ormantic/__init__.py -------------------------------------------------------------------------------- /src/ormantic/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesometoolbox/ormantic/HEAD/src/ormantic/exceptions.py -------------------------------------------------------------------------------- /src/ormantic/fields.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesometoolbox/ormantic/HEAD/src/ormantic/fields.py -------------------------------------------------------------------------------- /src/ormantic/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesometoolbox/ormantic/HEAD/src/ormantic/models.py -------------------------------------------------------------------------------- /tests/test_columns.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesometoolbox/ormantic/HEAD/tests/test_columns.py -------------------------------------------------------------------------------- /tests/test_foreignkey.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesometoolbox/ormantic/HEAD/tests/test_foreignkey.py -------------------------------------------------------------------------------- /tests/test_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesometoolbox/ormantic/HEAD/tests/test_models.py --------------------------------------------------------------------------------