├── .gitignore ├── .travis.yml ├── LICENSE ├── MANIFEST.in ├── Makefile ├── README.rst ├── django_transfer ├── __init__.py ├── models.py ├── settings.py ├── tests.py ├── urls.py ├── views.py └── wsgi.py ├── manage.py ├── setup.cfg └── setup.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartfile/django-transfer/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartfile/django-transfer/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartfile/django-transfer/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- 1 | include README.rst LICENSE 2 | -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartfile/django-transfer/HEAD/Makefile -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartfile/django-transfer/HEAD/README.rst -------------------------------------------------------------------------------- /django_transfer/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartfile/django-transfer/HEAD/django_transfer/__init__.py -------------------------------------------------------------------------------- /django_transfer/models.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django_transfer/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartfile/django-transfer/HEAD/django_transfer/settings.py -------------------------------------------------------------------------------- /django_transfer/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartfile/django-transfer/HEAD/django_transfer/tests.py -------------------------------------------------------------------------------- /django_transfer/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartfile/django-transfer/HEAD/django_transfer/urls.py -------------------------------------------------------------------------------- /django_transfer/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartfile/django-transfer/HEAD/django_transfer/views.py -------------------------------------------------------------------------------- /django_transfer/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartfile/django-transfer/HEAD/django_transfer/wsgi.py -------------------------------------------------------------------------------- /manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartfile/django-transfer/HEAD/manage.py -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- 1 | [bdist_wheel] 2 | universal = 1 3 | -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartfile/django-transfer/HEAD/setup.py --------------------------------------------------------------------------------