├── .coveralls.yml ├── .gitignore ├── .travis.yml ├── LICENSE ├── MANIFEST.in ├── README.md ├── django_nameko ├── VERSION ├── __init__.py └── rpc.py ├── requirements.txt ├── setup.cfg ├── setup.py ├── tests ├── __init__.py ├── config.yaml ├── services.py ├── test_rpc.py └── test_running_services.py └── tox.ini /.coveralls.yml: -------------------------------------------------------------------------------- 1 | service_name: travis-pro 2 | repo_token: Q7dFAhsb23120r63zLQ2bVOT7IaOJNvyM 3 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/and3rson/django-nameko/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/and3rson/django-nameko/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/and3rson/django-nameko/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/and3rson/django-nameko/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/and3rson/django-nameko/HEAD/README.md -------------------------------------------------------------------------------- /django_nameko/VERSION: -------------------------------------------------------------------------------- 1 | 0.8.2 2 | -------------------------------------------------------------------------------- /django_nameko/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/and3rson/django-nameko/HEAD/django_nameko/__init__.py -------------------------------------------------------------------------------- /django_nameko/rpc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/and3rson/django-nameko/HEAD/django_nameko/rpc.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | django>=1.10 2 | nameko==2.11.* -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/and3rson/django-nameko/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/and3rson/django-nameko/HEAD/setup.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | -------------------------------------------------------------------------------- /tests/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/and3rson/django-nameko/HEAD/tests/config.yaml -------------------------------------------------------------------------------- /tests/services.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/and3rson/django-nameko/HEAD/tests/services.py -------------------------------------------------------------------------------- /tests/test_rpc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/and3rson/django-nameko/HEAD/tests/test_rpc.py -------------------------------------------------------------------------------- /tests/test_running_services.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/and3rson/django-nameko/HEAD/tests/test_running_services.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/and3rson/django-nameko/HEAD/tox.ini --------------------------------------------------------------------------------