├── mobility ├── __init__.py ├── middleware.py ├── decorators.py └── tests.py ├── .gitignore ├── MANIFEST.in ├── runtests.sh ├── setup.py ├── LICENSE └── README.rst /mobility/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | *.py[co] 2 | *.sw[po] 3 | *~ 4 | -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- 1 | include LICENSE 2 | include README.rst 3 | -------------------------------------------------------------------------------- /runtests.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | SETTINGS='settings.py' 4 | 5 | cat > $SETTINGS <