├── .gitignore ├── AUTHORS ├── LICENSE ├── MANIFEST.in ├── README.rst ├── discover_runner ├── __init__.py ├── runner.py └── settings.py ├── setup.cfg └── setup.py /.gitignore: -------------------------------------------------------------------------------- 1 | *.egg-info 2 | build/ -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- 1 | Carl J. Meyer 2 | Jannis Leidel 3 | Omer Katz 4 | Russ Ferriday 5 | Rafal Stozek -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezdez/django-discover-runner/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezdez/django-discover-runner/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezdez/django-discover-runner/HEAD/README.rst -------------------------------------------------------------------------------- /discover_runner/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezdez/django-discover-runner/HEAD/discover_runner/__init__.py -------------------------------------------------------------------------------- /discover_runner/runner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezdez/django-discover-runner/HEAD/discover_runner/runner.py -------------------------------------------------------------------------------- /discover_runner/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezdez/django-discover-runner/HEAD/discover_runner/settings.py -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- 1 | [wheel] 2 | universal = 1 3 | -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezdez/django-discover-runner/HEAD/setup.py --------------------------------------------------------------------------------