├── .frigg.yml ├── .gitignore ├── LICENCE ├── README.md ├── basis ├── __init__.py ├── managers.py ├── models.py └── serializers.py ├── docs ├── Makefile ├── conf.py ├── index.rst ├── models.rst ├── serializers.rst └── usage.rst ├── runtests.py ├── setup.cfg ├── setup.py ├── tests ├── __init__.py ├── models.py ├── serializers.py ├── settings.py ├── tests.py ├── urls.py └── views.py └── tox.ini /.frigg.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frecar/django-basis/HEAD/.frigg.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frecar/django-basis/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENCE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frecar/django-basis/HEAD/LICENCE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frecar/django-basis/HEAD/README.md -------------------------------------------------------------------------------- /basis/__init__.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | __version__ = '1.0.0' 3 | -------------------------------------------------------------------------------- /basis/managers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frecar/django-basis/HEAD/basis/managers.py -------------------------------------------------------------------------------- /basis/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frecar/django-basis/HEAD/basis/models.py -------------------------------------------------------------------------------- /basis/serializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frecar/django-basis/HEAD/basis/serializers.py -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frecar/django-basis/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frecar/django-basis/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frecar/django-basis/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/models.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frecar/django-basis/HEAD/docs/models.rst -------------------------------------------------------------------------------- /docs/serializers.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frecar/django-basis/HEAD/docs/serializers.rst -------------------------------------------------------------------------------- /docs/usage.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frecar/django-basis/HEAD/docs/usage.rst -------------------------------------------------------------------------------- /runtests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frecar/django-basis/HEAD/runtests.py -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frecar/django-basis/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frecar/django-basis/HEAD/setup.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | -------------------------------------------------------------------------------- /tests/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frecar/django-basis/HEAD/tests/models.py -------------------------------------------------------------------------------- /tests/serializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frecar/django-basis/HEAD/tests/serializers.py -------------------------------------------------------------------------------- /tests/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frecar/django-basis/HEAD/tests/settings.py -------------------------------------------------------------------------------- /tests/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frecar/django-basis/HEAD/tests/tests.py -------------------------------------------------------------------------------- /tests/urls.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf8 -*- 2 | urlpatterns = [] 3 | -------------------------------------------------------------------------------- /tests/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frecar/django-basis/HEAD/tests/views.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frecar/django-basis/HEAD/tox.ini --------------------------------------------------------------------------------