├── .github └── workflows │ └── ci.yaml ├── .gitignore ├── .pre-commit-config.yaml ├── CHANGELOG.md ├── LICENSE ├── MANIFEST.in ├── README.md ├── click_man ├── __init__.py ├── core.py ├── man.py └── shell.py ├── docs └── asciicast.gif ├── examples └── debian_pkg │ ├── debian │ ├── changelog │ ├── compat │ ├── control │ ├── manpages │ ├── rules │ └── source │ │ └── format │ ├── repo │ ├── __init__.py │ └── __main__.py │ └── setup.py ├── pyproject.toml ├── requirements-dev.txt ├── requirements.txt ├── tests ├── __init__.py ├── test_man.py └── test_shell.py └── tox.ini /.github/workflows/ci.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/click-contrib/click-man/HEAD/.github/workflows/ci.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/click-contrib/click-man/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/click-contrib/click-man/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/click-contrib/click-man/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/click-contrib/click-man/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/click-contrib/click-man/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/click-contrib/click-man/HEAD/README.md -------------------------------------------------------------------------------- /click_man/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /click_man/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/click-contrib/click-man/HEAD/click_man/core.py -------------------------------------------------------------------------------- /click_man/man.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/click-contrib/click-man/HEAD/click_man/man.py -------------------------------------------------------------------------------- /click_man/shell.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/click-contrib/click-man/HEAD/click_man/shell.py -------------------------------------------------------------------------------- /docs/asciicast.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/click-contrib/click-man/HEAD/docs/asciicast.gif -------------------------------------------------------------------------------- /examples/debian_pkg/debian/changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/click-contrib/click-man/HEAD/examples/debian_pkg/debian/changelog -------------------------------------------------------------------------------- /examples/debian_pkg/debian/compat: -------------------------------------------------------------------------------- 1 | 9 2 | -------------------------------------------------------------------------------- /examples/debian_pkg/debian/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/click-contrib/click-man/HEAD/examples/debian_pkg/debian/control -------------------------------------------------------------------------------- /examples/debian_pkg/debian/manpages: -------------------------------------------------------------------------------- 1 | debian/tmp/manpages/* 2 | -------------------------------------------------------------------------------- /examples/debian_pkg/debian/rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/click-contrib/click-man/HEAD/examples/debian_pkg/debian/rules -------------------------------------------------------------------------------- /examples/debian_pkg/debian/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (native) 2 | -------------------------------------------------------------------------------- /examples/debian_pkg/repo/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/debian_pkg/repo/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/click-contrib/click-man/HEAD/examples/debian_pkg/repo/__main__.py -------------------------------------------------------------------------------- /examples/debian_pkg/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/click-contrib/click-man/HEAD/examples/debian_pkg/setup.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/click-contrib/click-man/HEAD/pyproject.toml -------------------------------------------------------------------------------- /requirements-dev.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/click-contrib/click-man/HEAD/requirements-dev.txt -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | click 2 | -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test_man.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/click-contrib/click-man/HEAD/tests/test_man.py -------------------------------------------------------------------------------- /tests/test_shell.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/click-contrib/click-man/HEAD/tests/test_shell.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/click-contrib/click-man/HEAD/tox.ini --------------------------------------------------------------------------------