diff --git a/docs/CHANGELOG.md b/.github/CHANGELOG.md similarity index 100% rename from docs/CHANGELOG.md rename to .github/CHANGELOG.md diff --git a/docs/CODE_OF_CONDUCT.md b/.github/CODE_OF_CONDUCT.md similarity index 100% rename from docs/CODE_OF_CONDUCT.md rename to .github/CODE_OF_CONDUCT.md diff --git a/docs/CONTRIBUTING.md b/.github/CONTRIBUTING.md similarity index 100% rename from docs/CONTRIBUTING.md rename to .github/CONTRIBUTING.md diff --git a/docs/TODO.md b/.github/TODO.md similarity index 100% rename from docs/TODO.md rename to .github/TODO.md diff --git a/docs/README.md b/docs/README.md index 1015b8400..c55b11197 100644 --- a/docs/README.md +++ b/docs/README.md @@ -54,7 +54,7 @@ Ensure you have at least Python 3.6 64bit. [![Chat on Discord](https://img.shields.io/discord/736279277242417272?logo=discord)](https://discord.gg/tyE7Gu4) [![Reddit](https://img.shields.io/reddit/subreddit-subscribers/dearpygui?label=r%2Fdearpygui)](https://www.reddit.com/r/DearPyGui/) -- [Documentation](https://github.com/hoffstadt/DearPyGui/wiki) comprehensive documentaion, tutorials, and examples. +- [Documentation](https://github.com/hoffstadt/DearPyGui/wiki) comprehensive documentation, tutorials, and examples. - [Development Roadmap](https://github.com/hoffstadt/DearPyGui/projects/4) major future features and changes. - [Feature Tracker](https://github.com/hoffstadt/DearPyGui/projects/5) all proposed new features. - [Bug Tracker](https://github.com/hoffstadt/DearPyGui/projects/1) current bugs and issues. diff --git a/docs/source/conf.py b/docs/source/conf.py index aa28b5c0d..bc3886d8e 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -29,8 +29,15 @@ # extensions coming with Sphinx (named 'sphinx.ext.*') or your custom # ones. extensions = [ + "sphinx.ext.autodoc", + "sphinx.ext.viewcode", + "sphinx.ext.napoleon", + "sphinx.ext.autosectionlabel", + "sphinx_copybutton", ] +autodoc_mock_imports = ['dearpygui'] + # Add any paths that contain templates here, relative to this directory. templates_path = ['_templates']