├── .flake8 ├── .github └── workflows │ ├── dockerimage.yml │ └── pythonpublish.yml ├── .gitignore ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── docs ├── autogen.py ├── custom_theme │ └── main.html └── mkdocs.yml ├── keras_autodoc ├── __init__.py ├── autogen.py ├── docstring.py ├── examples.py ├── gathering_members.py ├── get_signatures.py └── utils.py ├── setup.py └── tests ├── Dockerfile ├── __init__.py ├── autogen_future.py ├── dummy_package ├── __init__.py ├── dummy_module.py ├── dummy_module2.py └── expected.md ├── test_autogen.py ├── test_docstring.py ├── test_gathering_members.py ├── test_get_signature.py ├── test_integration.py └── test_utils.py /.flake8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keras-team/keras-autodoc/HEAD/.flake8 -------------------------------------------------------------------------------- /.github/workflows/dockerimage.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keras-team/keras-autodoc/HEAD/.github/workflows/dockerimage.yml -------------------------------------------------------------------------------- /.github/workflows/pythonpublish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keras-team/keras-autodoc/HEAD/.github/workflows/pythonpublish.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keras-team/keras-autodoc/HEAD/.gitignore -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keras-team/keras-autodoc/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keras-team/keras-autodoc/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keras-team/keras-autodoc/HEAD/README.md -------------------------------------------------------------------------------- /docs/autogen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keras-team/keras-autodoc/HEAD/docs/autogen.py -------------------------------------------------------------------------------- /docs/custom_theme/main.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keras-team/keras-autodoc/HEAD/docs/custom_theme/main.html -------------------------------------------------------------------------------- /docs/mkdocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keras-team/keras-autodoc/HEAD/docs/mkdocs.yml -------------------------------------------------------------------------------- /keras_autodoc/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keras-team/keras-autodoc/HEAD/keras_autodoc/__init__.py -------------------------------------------------------------------------------- /keras_autodoc/autogen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keras-team/keras-autodoc/HEAD/keras_autodoc/autogen.py -------------------------------------------------------------------------------- /keras_autodoc/docstring.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keras-team/keras-autodoc/HEAD/keras_autodoc/docstring.py -------------------------------------------------------------------------------- /keras_autodoc/examples.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keras-team/keras-autodoc/HEAD/keras_autodoc/examples.py -------------------------------------------------------------------------------- /keras_autodoc/gathering_members.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keras-team/keras-autodoc/HEAD/keras_autodoc/gathering_members.py -------------------------------------------------------------------------------- /keras_autodoc/get_signatures.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keras-team/keras-autodoc/HEAD/keras_autodoc/get_signatures.py -------------------------------------------------------------------------------- /keras_autodoc/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keras-team/keras-autodoc/HEAD/keras_autodoc/utils.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keras-team/keras-autodoc/HEAD/setup.py -------------------------------------------------------------------------------- /tests/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keras-team/keras-autodoc/HEAD/tests/Dockerfile -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/autogen_future.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keras-team/keras-autodoc/HEAD/tests/autogen_future.py -------------------------------------------------------------------------------- /tests/dummy_package/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keras-team/keras-autodoc/HEAD/tests/dummy_package/__init__.py -------------------------------------------------------------------------------- /tests/dummy_package/dummy_module.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keras-team/keras-autodoc/HEAD/tests/dummy_package/dummy_module.py -------------------------------------------------------------------------------- /tests/dummy_package/dummy_module2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keras-team/keras-autodoc/HEAD/tests/dummy_package/dummy_module2.py -------------------------------------------------------------------------------- /tests/dummy_package/expected.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keras-team/keras-autodoc/HEAD/tests/dummy_package/expected.md -------------------------------------------------------------------------------- /tests/test_autogen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keras-team/keras-autodoc/HEAD/tests/test_autogen.py -------------------------------------------------------------------------------- /tests/test_docstring.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keras-team/keras-autodoc/HEAD/tests/test_docstring.py -------------------------------------------------------------------------------- /tests/test_gathering_members.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keras-team/keras-autodoc/HEAD/tests/test_gathering_members.py -------------------------------------------------------------------------------- /tests/test_get_signature.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keras-team/keras-autodoc/HEAD/tests/test_get_signature.py -------------------------------------------------------------------------------- /tests/test_integration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keras-team/keras-autodoc/HEAD/tests/test_integration.py -------------------------------------------------------------------------------- /tests/test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keras-team/keras-autodoc/HEAD/tests/test_utils.py --------------------------------------------------------------------------------