├── .gitignore ├── .travis.yml ├── COPYING ├── README.md ├── django_auto_one_to_one ├── __init__.py └── models.py ├── runtests.py ├── setup.cfg ├── setup.py └── tests ├── __init__.py ├── models.py ├── test_settings.py └── tests.py /.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | *.egg-info/ 3 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lamby/django-auto-one-to-one/HEAD/.travis.yml -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lamby/django-auto-one-to-one/HEAD/COPYING -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lamby/django-auto-one-to-one/HEAD/README.md -------------------------------------------------------------------------------- /django_auto_one_to_one/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lamby/django-auto-one-to-one/HEAD/django_auto_one_to_one/__init__.py -------------------------------------------------------------------------------- /django_auto_one_to_one/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lamby/django-auto-one-to-one/HEAD/django_auto_one_to_one/models.py -------------------------------------------------------------------------------- /runtests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lamby/django-auto-one-to-one/HEAD/runtests.py -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- 1 | [bdist_wheel] 2 | universal = True 3 | -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lamby/django-auto-one-to-one/HEAD/setup.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lamby/django-auto-one-to-one/HEAD/tests/models.py -------------------------------------------------------------------------------- /tests/test_settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lamby/django-auto-one-to-one/HEAD/tests/test_settings.py -------------------------------------------------------------------------------- /tests/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lamby/django-auto-one-to-one/HEAD/tests/tests.py --------------------------------------------------------------------------------