├── .gitignore ├── MANIFEST.in ├── README.md ├── REQUIREMENTS ├── UNLICENSE ├── distribute_setup.py ├── setup.py ├── src └── djboss │ ├── __init__.py │ ├── cli.py │ ├── commands.py │ └── parser.py └── test └── example ├── __init__.py ├── echoapp ├── __init__.py ├── commands.py └── models.py ├── manage.py ├── settings.py └── urls.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zacharyvoase/django-boss/HEAD/.gitignore -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zacharyvoase/django-boss/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zacharyvoase/django-boss/HEAD/README.md -------------------------------------------------------------------------------- /REQUIREMENTS: -------------------------------------------------------------------------------- 1 | argparse>=1.0.1 -------------------------------------------------------------------------------- /UNLICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zacharyvoase/django-boss/HEAD/UNLICENSE -------------------------------------------------------------------------------- /distribute_setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zacharyvoase/django-boss/HEAD/distribute_setup.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zacharyvoase/django-boss/HEAD/setup.py -------------------------------------------------------------------------------- /src/djboss/__init__.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | 3 | __version__ = '0.6.3' 4 | -------------------------------------------------------------------------------- /src/djboss/cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zacharyvoase/django-boss/HEAD/src/djboss/cli.py -------------------------------------------------------------------------------- /src/djboss/commands.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zacharyvoase/django-boss/HEAD/src/djboss/commands.py -------------------------------------------------------------------------------- /src/djboss/parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zacharyvoase/django-boss/HEAD/src/djboss/parser.py -------------------------------------------------------------------------------- /test/example/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/example/echoapp/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/example/echoapp/commands.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zacharyvoase/django-boss/HEAD/test/example/echoapp/commands.py -------------------------------------------------------------------------------- /test/example/echoapp/models.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/example/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zacharyvoase/django-boss/HEAD/test/example/manage.py -------------------------------------------------------------------------------- /test/example/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zacharyvoase/django-boss/HEAD/test/example/settings.py -------------------------------------------------------------------------------- /test/example/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zacharyvoase/django-boss/HEAD/test/example/urls.py --------------------------------------------------------------------------------