├── .gitignore ├── LICENSE ├── MANIFEST.IN ├── README.rst ├── djangodoo ├── __init__.py ├── auth.py ├── fields.py └── models.py └── setup.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fdegrave/djangodoo/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fdegrave/djangodoo/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.IN: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fdegrave/djangodoo/HEAD/MANIFEST.IN -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fdegrave/djangodoo/HEAD/README.rst -------------------------------------------------------------------------------- /djangodoo/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fdegrave/djangodoo/HEAD/djangodoo/__init__.py -------------------------------------------------------------------------------- /djangodoo/auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fdegrave/djangodoo/HEAD/djangodoo/auth.py -------------------------------------------------------------------------------- /djangodoo/fields.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fdegrave/djangodoo/HEAD/djangodoo/fields.py -------------------------------------------------------------------------------- /djangodoo/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fdegrave/djangodoo/HEAD/djangodoo/models.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fdegrave/djangodoo/HEAD/setup.py --------------------------------------------------------------------------------