├── .devcontainer └── devcontainer.json ├── .editorconfig ├── .github ├── CODEOWNERS ├── CODE_OF_CONDUCT.md ├── ISSUE_TEMPLATE │ ├── 01_bug-report.md │ ├── 02_feature-request.md │ ├── 03_documentation.md │ ├── 04_deployment-problem.md │ ├── 05_other.md │ └── config.yml ├── PULL_REQUEST_TEMPLATE.md ├── SUPPORT.md ├── actions │ └── build-environment │ │ ├── Dockerfile │ │ └── action.yml ├── pr-labeler-branch-prefix.yml ├── pr-labeler-file-path.yml ├── release-drafter.yml └── workflows │ ├── build-pipeline.yml │ ├── close-stale-issues.yml │ ├── pr-labeler.yml │ └── release-pipeline.yml ├── .gitignore ├── .reuse └── dep5 ├── .vscode ├── README.md ├── extensions.json └── recommended-settings.json ├── CHANGELOG.md ├── CONTRIBUTING.md ├── LICENSE ├── Pipfile ├── Pipfile.lock ├── README.md ├── docs ├── .pages ├── README.md ├── images │ ├── api-overview.png │ ├── mkdocs-integration.png │ └── source-linking.png └── lazydocs.generation.md ├── pyproject.toml ├── setup.cfg ├── setup.py ├── src └── lazydocs │ ├── __init__.py │ ├── __main__.py │ ├── _about.py │ ├── _cli.py │ └── generation.py └── tests ├── __init__.py └── test_generation.py /.devcontainer/devcontainer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml-tooling/lazydocs/HEAD/.devcontainer/devcontainer.json -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml-tooling/lazydocs/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml-tooling/lazydocs/HEAD/.github/CODEOWNERS -------------------------------------------------------------------------------- /.github/CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml-tooling/lazydocs/HEAD/.github/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/01_bug-report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml-tooling/lazydocs/HEAD/.github/ISSUE_TEMPLATE/01_bug-report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/02_feature-request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml-tooling/lazydocs/HEAD/.github/ISSUE_TEMPLATE/02_feature-request.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/03_documentation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml-tooling/lazydocs/HEAD/.github/ISSUE_TEMPLATE/03_documentation.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/04_deployment-problem.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml-tooling/lazydocs/HEAD/.github/ISSUE_TEMPLATE/04_deployment-problem.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/05_other.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml-tooling/lazydocs/HEAD/.github/ISSUE_TEMPLATE/05_other.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- 1 | blank_issues_enabled: true 2 | -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml-tooling/lazydocs/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/SUPPORT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml-tooling/lazydocs/HEAD/.github/SUPPORT.md -------------------------------------------------------------------------------- /.github/actions/build-environment/Dockerfile: -------------------------------------------------------------------------------- 1 | FROM mltooling/build-environment:0.6.12 -------------------------------------------------------------------------------- /.github/actions/build-environment/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml-tooling/lazydocs/HEAD/.github/actions/build-environment/action.yml -------------------------------------------------------------------------------- /.github/pr-labeler-branch-prefix.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml-tooling/lazydocs/HEAD/.github/pr-labeler-branch-prefix.yml -------------------------------------------------------------------------------- /.github/pr-labeler-file-path.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml-tooling/lazydocs/HEAD/.github/pr-labeler-file-path.yml -------------------------------------------------------------------------------- /.github/release-drafter.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml-tooling/lazydocs/HEAD/.github/release-drafter.yml -------------------------------------------------------------------------------- /.github/workflows/build-pipeline.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml-tooling/lazydocs/HEAD/.github/workflows/build-pipeline.yml -------------------------------------------------------------------------------- /.github/workflows/close-stale-issues.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml-tooling/lazydocs/HEAD/.github/workflows/close-stale-issues.yml -------------------------------------------------------------------------------- /.github/workflows/pr-labeler.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml-tooling/lazydocs/HEAD/.github/workflows/pr-labeler.yml -------------------------------------------------------------------------------- /.github/workflows/release-pipeline.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml-tooling/lazydocs/HEAD/.github/workflows/release-pipeline.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml-tooling/lazydocs/HEAD/.gitignore -------------------------------------------------------------------------------- /.reuse/dep5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml-tooling/lazydocs/HEAD/.reuse/dep5 -------------------------------------------------------------------------------- /.vscode/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml-tooling/lazydocs/HEAD/.vscode/README.md -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml-tooling/lazydocs/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/recommended-settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml-tooling/lazydocs/HEAD/.vscode/recommended-settings.json -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml-tooling/lazydocs/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml-tooling/lazydocs/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml-tooling/lazydocs/HEAD/LICENSE -------------------------------------------------------------------------------- /Pipfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml-tooling/lazydocs/HEAD/Pipfile -------------------------------------------------------------------------------- /Pipfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml-tooling/lazydocs/HEAD/Pipfile.lock -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml-tooling/lazydocs/HEAD/README.md -------------------------------------------------------------------------------- /docs/.pages: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml-tooling/lazydocs/HEAD/docs/.pages -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml-tooling/lazydocs/HEAD/docs/README.md -------------------------------------------------------------------------------- /docs/images/api-overview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml-tooling/lazydocs/HEAD/docs/images/api-overview.png -------------------------------------------------------------------------------- /docs/images/mkdocs-integration.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml-tooling/lazydocs/HEAD/docs/images/mkdocs-integration.png -------------------------------------------------------------------------------- /docs/images/source-linking.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml-tooling/lazydocs/HEAD/docs/images/source-linking.png -------------------------------------------------------------------------------- /docs/lazydocs.generation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml-tooling/lazydocs/HEAD/docs/lazydocs.generation.md -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml-tooling/lazydocs/HEAD/pyproject.toml -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml-tooling/lazydocs/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml-tooling/lazydocs/HEAD/setup.py -------------------------------------------------------------------------------- /src/lazydocs/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml-tooling/lazydocs/HEAD/src/lazydocs/__init__.py -------------------------------------------------------------------------------- /src/lazydocs/__main__.py: -------------------------------------------------------------------------------- 1 | from ._cli import app 2 | 3 | app() 4 | -------------------------------------------------------------------------------- /src/lazydocs/_about.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml-tooling/lazydocs/HEAD/src/lazydocs/_about.py -------------------------------------------------------------------------------- /src/lazydocs/_cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml-tooling/lazydocs/HEAD/src/lazydocs/_cli.py -------------------------------------------------------------------------------- /src/lazydocs/generation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml-tooling/lazydocs/HEAD/src/lazydocs/generation.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test_generation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml-tooling/lazydocs/HEAD/tests/test_generation.py --------------------------------------------------------------------------------