├── .gitignore ├── LICENSE ├── README.rst ├── djangbone ├── __init__.py ├── models.py ├── tests.py └── views.py └── setup.py /.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/af/djangbone/HEAD/LICENSE -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/af/djangbone/HEAD/README.rst -------------------------------------------------------------------------------- /djangbone/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /djangbone/models.py: -------------------------------------------------------------------------------- 1 | # Empty models.py, which helps django recognize this as an app. 2 | -------------------------------------------------------------------------------- /djangbone/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/af/djangbone/HEAD/djangbone/tests.py -------------------------------------------------------------------------------- /djangbone/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/af/djangbone/HEAD/djangbone/views.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/af/djangbone/HEAD/setup.py --------------------------------------------------------------------------------