├── .gitattributes ├── .github └── workflows │ ├── build.yml │ └── python-app.yml ├── .gitignore ├── .readthedocs.yml ├── LICENSE ├── MANIFEST.in ├── README.rst ├── autodocsumm ├── __init__.py └── _version.py ├── conftest.py ├── docs ├── Makefile ├── api │ └── autodocsumm.rst ├── apigen.bash ├── call_demo.py ├── conf.py ├── conf_settings.rst ├── demo_class.rst ├── demo_exception.rst ├── demo_grouper.rst ├── demo_module.rst ├── dummy.py ├── dummy2.py ├── examples.rst ├── index.rst ├── inline_autoclasssumm.py ├── keep_data_demo.py ├── no_data_demo.py ├── objects.inv └── requirements.txt ├── pyproject.toml ├── setup.py └── tests ├── test-root ├── conf.py ├── dummy.py ├── dummy_submodule │ ├── __init__.py │ ├── submodule1.py │ └── submodule2.py ├── dummy_title.py ├── empty.py ├── index.rst ├── test_autoclasssumm.rst ├── test_autoclasssumm_inline.rst ├── test_autoclasssumm_no_titles.rst ├── test_autoclasssumm_nosignatures.rst ├── test_autoclasssumm_some_sections.rst ├── test_autoexceptionsumm.rst ├── test_automodulesumm.rst ├── test_automodulesumm_nosignatures.rst ├── test_automodulesumm_some_sections.rst ├── test_class.rst ├── test_class_nosignatures.rst ├── test_class_order.rst ├── test_class_submodule.rst ├── test_class_summary_only.rst ├── test_class_with_ref_to_other_class.rst ├── test_empty.rst ├── test_exception.rst ├── test_inherited.rst ├── test_module.rst ├── test_module_exclude_members.rst ├── test_module_no_nesting.rst ├── test_module_nosignatures.rst ├── test_module_submodule.rst ├── test_module_summary_only.rst └── test_module_title.rst └── test_autodocsumm.py /.gitattributes: -------------------------------------------------------------------------------- 1 | autodocsumm/_version.py export-subst 2 | -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chilipp/autodocsumm/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.github/workflows/python-app.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chilipp/autodocsumm/HEAD/.github/workflows/python-app.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chilipp/autodocsumm/HEAD/.gitignore -------------------------------------------------------------------------------- /.readthedocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chilipp/autodocsumm/HEAD/.readthedocs.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chilipp/autodocsumm/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chilipp/autodocsumm/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chilipp/autodocsumm/HEAD/README.rst -------------------------------------------------------------------------------- /autodocsumm/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chilipp/autodocsumm/HEAD/autodocsumm/__init__.py -------------------------------------------------------------------------------- /autodocsumm/_version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chilipp/autodocsumm/HEAD/autodocsumm/_version.py -------------------------------------------------------------------------------- /conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chilipp/autodocsumm/HEAD/conftest.py -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chilipp/autodocsumm/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/api/autodocsumm.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chilipp/autodocsumm/HEAD/docs/api/autodocsumm.rst -------------------------------------------------------------------------------- /docs/apigen.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chilipp/autodocsumm/HEAD/docs/apigen.bash -------------------------------------------------------------------------------- /docs/call_demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chilipp/autodocsumm/HEAD/docs/call_demo.py -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chilipp/autodocsumm/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/conf_settings.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chilipp/autodocsumm/HEAD/docs/conf_settings.rst -------------------------------------------------------------------------------- /docs/demo_class.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chilipp/autodocsumm/HEAD/docs/demo_class.rst -------------------------------------------------------------------------------- /docs/demo_exception.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chilipp/autodocsumm/HEAD/docs/demo_exception.rst -------------------------------------------------------------------------------- /docs/demo_grouper.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chilipp/autodocsumm/HEAD/docs/demo_grouper.rst -------------------------------------------------------------------------------- /docs/demo_module.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chilipp/autodocsumm/HEAD/docs/demo_module.rst -------------------------------------------------------------------------------- /docs/dummy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chilipp/autodocsumm/HEAD/docs/dummy.py -------------------------------------------------------------------------------- /docs/dummy2.py: -------------------------------------------------------------------------------- 1 | dummy.py -------------------------------------------------------------------------------- /docs/examples.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chilipp/autodocsumm/HEAD/docs/examples.rst -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chilipp/autodocsumm/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/inline_autoclasssumm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chilipp/autodocsumm/HEAD/docs/inline_autoclasssumm.py -------------------------------------------------------------------------------- /docs/keep_data_demo.py: -------------------------------------------------------------------------------- 1 | no_data_demo.py -------------------------------------------------------------------------------- /docs/no_data_demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chilipp/autodocsumm/HEAD/docs/no_data_demo.py -------------------------------------------------------------------------------- /docs/objects.inv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chilipp/autodocsumm/HEAD/docs/objects.inv -------------------------------------------------------------------------------- /docs/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chilipp/autodocsumm/HEAD/docs/requirements.txt -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chilipp/autodocsumm/HEAD/pyproject.toml -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chilipp/autodocsumm/HEAD/setup.py -------------------------------------------------------------------------------- /tests/test-root/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chilipp/autodocsumm/HEAD/tests/test-root/conf.py -------------------------------------------------------------------------------- /tests/test-root/dummy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chilipp/autodocsumm/HEAD/tests/test-root/dummy.py -------------------------------------------------------------------------------- /tests/test-root/dummy_submodule/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test-root/dummy_submodule/submodule1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chilipp/autodocsumm/HEAD/tests/test-root/dummy_submodule/submodule1.py -------------------------------------------------------------------------------- /tests/test-root/dummy_submodule/submodule2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chilipp/autodocsumm/HEAD/tests/test-root/dummy_submodule/submodule2.py -------------------------------------------------------------------------------- /tests/test-root/dummy_title.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chilipp/autodocsumm/HEAD/tests/test-root/dummy_title.py -------------------------------------------------------------------------------- /tests/test-root/empty.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chilipp/autodocsumm/HEAD/tests/test-root/empty.py -------------------------------------------------------------------------------- /tests/test-root/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chilipp/autodocsumm/HEAD/tests/test-root/index.rst -------------------------------------------------------------------------------- /tests/test-root/test_autoclasssumm.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chilipp/autodocsumm/HEAD/tests/test-root/test_autoclasssumm.rst -------------------------------------------------------------------------------- /tests/test-root/test_autoclasssumm_inline.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chilipp/autodocsumm/HEAD/tests/test-root/test_autoclasssumm_inline.rst -------------------------------------------------------------------------------- /tests/test-root/test_autoclasssumm_no_titles.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chilipp/autodocsumm/HEAD/tests/test-root/test_autoclasssumm_no_titles.rst -------------------------------------------------------------------------------- /tests/test-root/test_autoclasssumm_nosignatures.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chilipp/autodocsumm/HEAD/tests/test-root/test_autoclasssumm_nosignatures.rst -------------------------------------------------------------------------------- /tests/test-root/test_autoclasssumm_some_sections.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chilipp/autodocsumm/HEAD/tests/test-root/test_autoclasssumm_some_sections.rst -------------------------------------------------------------------------------- /tests/test-root/test_autoexceptionsumm.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chilipp/autodocsumm/HEAD/tests/test-root/test_autoexceptionsumm.rst -------------------------------------------------------------------------------- /tests/test-root/test_automodulesumm.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chilipp/autodocsumm/HEAD/tests/test-root/test_automodulesumm.rst -------------------------------------------------------------------------------- /tests/test-root/test_automodulesumm_nosignatures.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chilipp/autodocsumm/HEAD/tests/test-root/test_automodulesumm_nosignatures.rst -------------------------------------------------------------------------------- /tests/test-root/test_automodulesumm_some_sections.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chilipp/autodocsumm/HEAD/tests/test-root/test_automodulesumm_some_sections.rst -------------------------------------------------------------------------------- /tests/test-root/test_class.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chilipp/autodocsumm/HEAD/tests/test-root/test_class.rst -------------------------------------------------------------------------------- /tests/test-root/test_class_nosignatures.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chilipp/autodocsumm/HEAD/tests/test-root/test_class_nosignatures.rst -------------------------------------------------------------------------------- /tests/test-root/test_class_order.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chilipp/autodocsumm/HEAD/tests/test-root/test_class_order.rst -------------------------------------------------------------------------------- /tests/test-root/test_class_submodule.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chilipp/autodocsumm/HEAD/tests/test-root/test_class_submodule.rst -------------------------------------------------------------------------------- /tests/test-root/test_class_summary_only.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chilipp/autodocsumm/HEAD/tests/test-root/test_class_summary_only.rst -------------------------------------------------------------------------------- /tests/test-root/test_class_with_ref_to_other_class.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chilipp/autodocsumm/HEAD/tests/test-root/test_class_with_ref_to_other_class.rst -------------------------------------------------------------------------------- /tests/test-root/test_empty.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chilipp/autodocsumm/HEAD/tests/test-root/test_empty.rst -------------------------------------------------------------------------------- /tests/test-root/test_exception.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chilipp/autodocsumm/HEAD/tests/test-root/test_exception.rst -------------------------------------------------------------------------------- /tests/test-root/test_inherited.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chilipp/autodocsumm/HEAD/tests/test-root/test_inherited.rst -------------------------------------------------------------------------------- /tests/test-root/test_module.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chilipp/autodocsumm/HEAD/tests/test-root/test_module.rst -------------------------------------------------------------------------------- /tests/test-root/test_module_exclude_members.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chilipp/autodocsumm/HEAD/tests/test-root/test_module_exclude_members.rst -------------------------------------------------------------------------------- /tests/test-root/test_module_no_nesting.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chilipp/autodocsumm/HEAD/tests/test-root/test_module_no_nesting.rst -------------------------------------------------------------------------------- /tests/test-root/test_module_nosignatures.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chilipp/autodocsumm/HEAD/tests/test-root/test_module_nosignatures.rst -------------------------------------------------------------------------------- /tests/test-root/test_module_submodule.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chilipp/autodocsumm/HEAD/tests/test-root/test_module_submodule.rst -------------------------------------------------------------------------------- /tests/test-root/test_module_summary_only.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chilipp/autodocsumm/HEAD/tests/test-root/test_module_summary_only.rst -------------------------------------------------------------------------------- /tests/test-root/test_module_title.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chilipp/autodocsumm/HEAD/tests/test-root/test_module_title.rst -------------------------------------------------------------------------------- /tests/test_autodocsumm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chilipp/autodocsumm/HEAD/tests/test_autodocsumm.py --------------------------------------------------------------------------------