Sphinx plugin for help Django commands documentation.
Project description
Sphinx Django Command
Add you Django Command’s help to your documentation. Just write:
.. djcommand:: myapp.management.commands.mycmd
And you’ll have:
Usage: manage.py mycmd [options] Options: --version show program's version number and exit -h, --help show this help message and exit
Useful to keep DRY documentation between Sphinx and your command help.
Setup
Install with:
pip install sphinx-django-command
Be sure your Sphinx conf.py has access to the command that you want to document, the app could be found in sys.path and DJANGO_SETTINGS_MODULE is available if necessary.
Insert 'djcommanddoc' in the extensions parameter:
extensions = [ ... 'djcommanddoc', ... ]
Tests
Tests are stored in djcommanddoc.tests and for run them you must launch:
python djcommanddoc/tests.py
To run the tests across all supported versions of Django and Python, you can use Tox. Firstly install Tox:
pip install tox
To run the tests just use the command tox in the command line. If you want to run the tests against just one specific test environment you can run tox -e <testenv>. For example, to run the tests with Python3.3 and Django1.9 you would run:
tox -e py3.3
The available test environments can be found in tox.ini.
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
File details
Details for the file sphinx-django-command-0.1.3.tar.gz
.
File metadata
- Download URL: sphinx-django-command-0.1.3.tar.gz
- Upload date:
- Size: 4.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 837adc9146c51c7a35768e9b2f3f544056a39d0616d72550f957282cd8c678fa |
|
MD5 | 1ea9f182e4d0b6f5621f1fc4e3712b5a |
|
BLAKE2b-256 | ef853a520be5d30f6b65ab60a76018ed40226ddc6b305f6b59987eb4879d5ac4 |