├── .gitattributes ├── .github ├── dependabot.yml ├── labeler.yml ├── labels.yml └── workflows │ ├── ci_cd.yml │ ├── labeler.yml │ └── nightly-build.yml ├── .gitignore ├── .pre-commit-config.yaml ├── AUTHORS ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── CONTRIBUTORS.md ├── LICENSE ├── README.rst ├── doc ├── .vale.ini ├── Makefile ├── make.bat ├── source │ ├── _rulesets │ │ ├── branch_naming.json │ │ ├── main.json │ │ ├── tag-create.json │ │ └── tag-delete.json │ ├── abstractions │ │ ├── app-interface.rst │ │ ├── data-transfer.rst │ │ ├── index.rst │ │ └── service.rst │ ├── all-styles.rst │ ├── coding-style │ │ ├── code │ │ │ ├── tox-flit.rst │ │ │ └── tox-poetry.rst │ │ ├── deprecation.rst │ │ ├── formatting-tools.rst │ │ ├── index.rst │ │ ├── pep8.rst │ │ └── required-standard.rst │ ├── conf.py │ ├── content-writing │ │ ├── _static │ │ │ ├── AutoAPI-output-modified.png │ │ │ ├── GitHub-about-area.png │ │ │ ├── GitHub-line-selector-suggestions.png │ │ │ ├── README.md │ │ │ ├── assigning_yourself_PR.png │ │ │ ├── card-dev-guide-home-page.png │ │ │ ├── card-docker-containers-pyansys-geometry.png │ │ │ ├── cheat-sheet-nav-pane.png │ │ │ ├── collapsible_sections.png │ │ │ ├── icon-add-suggestion.png │ │ │ ├── multi-version-doc-selector.png │ │ │ ├── notice-new-package-release.png │ │ │ ├── notice-recent-pushes.png │ │ │ ├── tab-set-double-dev-guide.png │ │ │ └── tab-set-single-dev-guide.png │ │ ├── content-contrib-setup │ │ │ ├── client-libraries.rst │ │ │ ├── content-dev-environment.rst │ │ │ ├── doc-resources.rst │ │ │ ├── essentials.rst │ │ │ └── index.rst │ │ ├── content-how-tos │ │ │ ├── add-sphinx-extensions.rst │ │ │ ├── clone-branch.rst │ │ │ ├── create-PR.rst │ │ │ ├── create-issues-discussions.rst │ │ │ ├── edit-on-GitHub.rst │ │ │ ├── index.rst │ │ │ ├── request-bot-review.rst │ │ │ ├── resolve-issues-causing-check-failures.rst │ │ │ ├── review-PR.rst │ │ │ ├── show_cheat_sheet_thumbnail.rst │ │ │ ├── view-revision-history.rst │ │ │ └── work-around-Vale.rst │ │ ├── examples-writers │ │ │ ├── index.rst │ │ │ ├── nbsphinx.rst │ │ │ └── sphinx-gallery.rst │ │ ├── index.rst │ │ ├── py-files-writers │ │ │ ├── code-comments-message-strings.rst │ │ │ ├── docstring-format-rules.rst │ │ │ ├── index.rst │ │ │ └── py-formatting.rst │ │ └── rst-files-writers │ │ │ ├── cards.rst │ │ │ ├── code-blocks.rst │ │ │ ├── collapsible-sections.rst │ │ │ ├── doc-links.rst │ │ │ ├── images.rst │ │ │ ├── index.rst │ │ │ ├── notices.rst │ │ │ ├── rst-file-formatting.rst │ │ │ ├── rst-format-rules.rst │ │ │ ├── tab-sets.rst │ │ │ └── tables.rst │ ├── doc-style │ │ ├── code │ │ │ ├── required_conf.py │ │ │ ├── required_make.bat │ │ │ ├── required_makefile │ │ │ └── sample_func.py │ │ ├── doc-configuration.rst │ │ ├── docstrings.rst │ │ ├── formatting-tools.rst │ │ └── index.rst │ ├── getting-started │ │ ├── administration.rst │ │ ├── basic.rst │ │ ├── componentization.rst │ │ └── index.rst │ ├── how-to │ │ ├── code │ │ │ ├── build.yml │ │ │ ├── docs.yml │ │ │ ├── pyansys_logging.py │ │ │ ├── release.yml │ │ │ ├── style.yml │ │ │ ├── test_pyansys_logging.py │ │ │ └── tests.yml │ │ ├── compatibility.rst │ │ ├── continuous-integration.rst │ │ ├── contributing.rst │ │ ├── deprecating.rst │ │ ├── diag │ │ │ ├── doc_layout.rst │ │ │ ├── main_branch.rst │ │ │ └── release_branch.rst │ │ ├── dns-configuration.rst │ │ ├── documenting.rst │ │ ├── grpc-api-packages.rst │ │ ├── images │ │ │ ├── github_sections.png │ │ │ ├── guidelines_chart.png │ │ │ ├── log_flow.png │ │ │ └── windows_terminal.png │ │ ├── index.rst │ │ ├── logging.rst │ │ ├── packaging.rst │ │ ├── releasing.rst │ │ ├── repository-protection.rst │ │ ├── setting-up.rst │ │ ├── supporting-python-versions.rst │ │ ├── testing.rst │ │ └── vulnerabilities.rst │ ├── index.rst │ ├── links.rst │ └── packaging │ │ ├── build-systems.rst │ │ ├── code │ │ ├── authors_code.rst │ │ ├── changelog_file.md │ │ ├── code_of_conduct_file.md │ │ ├── contributing_file.md │ │ ├── contributors_file.md │ │ ├── license_mit_code.rst │ │ ├── pyproject_code.rst │ │ ├── pyproject_flit_code.rst │ │ ├── pyproject_poetry_code.rst │ │ ├── pyproject_setuptools_code.rst │ │ └── setup_file_code.rst │ │ ├── diag │ │ ├── architecture_diag.png │ │ ├── build_system_diag.rst │ │ ├── doc_structure_diag.rst │ │ ├── grpc_structure_diag.rst │ │ ├── pyansys_namespace_diag.rst │ │ ├── pyproduct_library_structure_diag.rst │ │ ├── python_library_diag.rst │ │ ├── src_structure_diag.rst │ │ └── tests_structure_diag.rst │ │ ├── index.rst │ │ ├── structure.rst │ │ └── templates.rst └── styles │ ├── .gitignore │ └── config │ └── vocabularies │ └── ANSYS │ ├── accept.txt │ └── reject.txt ├── examples ├── README.rst └── pyvista_example.py ├── requirements └── requirements_doc.txt ├── ruff.toml └── tox.ini /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pyansys-dev-guide/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pyansys-dev-guide/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/labeler.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pyansys-dev-guide/HEAD/.github/labeler.yml -------------------------------------------------------------------------------- /.github/labels.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pyansys-dev-guide/HEAD/.github/labels.yml -------------------------------------------------------------------------------- /.github/workflows/ci_cd.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pyansys-dev-guide/HEAD/.github/workflows/ci_cd.yml -------------------------------------------------------------------------------- /.github/workflows/labeler.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pyansys-dev-guide/HEAD/.github/workflows/labeler.yml -------------------------------------------------------------------------------- /.github/workflows/nightly-build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pyansys-dev-guide/HEAD/.github/workflows/nightly-build.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pyansys-dev-guide/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pyansys-dev-guide/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pyansys-dev-guide/HEAD/AUTHORS -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pyansys-dev-guide/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pyansys-dev-guide/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /CONTRIBUTORS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pyansys-dev-guide/HEAD/CONTRIBUTORS.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pyansys-dev-guide/HEAD/LICENSE -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pyansys-dev-guide/HEAD/README.rst -------------------------------------------------------------------------------- /doc/.vale.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pyansys-dev-guide/HEAD/doc/.vale.ini -------------------------------------------------------------------------------- /doc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pyansys-dev-guide/HEAD/doc/Makefile -------------------------------------------------------------------------------- /doc/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pyansys-dev-guide/HEAD/doc/make.bat -------------------------------------------------------------------------------- /doc/source/_rulesets/branch_naming.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pyansys-dev-guide/HEAD/doc/source/_rulesets/branch_naming.json -------------------------------------------------------------------------------- /doc/source/_rulesets/main.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pyansys-dev-guide/HEAD/doc/source/_rulesets/main.json -------------------------------------------------------------------------------- /doc/source/_rulesets/tag-create.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pyansys-dev-guide/HEAD/doc/source/_rulesets/tag-create.json -------------------------------------------------------------------------------- /doc/source/_rulesets/tag-delete.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pyansys-dev-guide/HEAD/doc/source/_rulesets/tag-delete.json -------------------------------------------------------------------------------- /doc/source/abstractions/app-interface.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pyansys-dev-guide/HEAD/doc/source/abstractions/app-interface.rst -------------------------------------------------------------------------------- /doc/source/abstractions/data-transfer.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pyansys-dev-guide/HEAD/doc/source/abstractions/data-transfer.rst -------------------------------------------------------------------------------- /doc/source/abstractions/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pyansys-dev-guide/HEAD/doc/source/abstractions/index.rst -------------------------------------------------------------------------------- /doc/source/abstractions/service.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pyansys-dev-guide/HEAD/doc/source/abstractions/service.rst -------------------------------------------------------------------------------- /doc/source/all-styles.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pyansys-dev-guide/HEAD/doc/source/all-styles.rst -------------------------------------------------------------------------------- /doc/source/coding-style/code/tox-flit.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pyansys-dev-guide/HEAD/doc/source/coding-style/code/tox-flit.rst -------------------------------------------------------------------------------- /doc/source/coding-style/code/tox-poetry.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pyansys-dev-guide/HEAD/doc/source/coding-style/code/tox-poetry.rst -------------------------------------------------------------------------------- /doc/source/coding-style/deprecation.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pyansys-dev-guide/HEAD/doc/source/coding-style/deprecation.rst -------------------------------------------------------------------------------- /doc/source/coding-style/formatting-tools.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pyansys-dev-guide/HEAD/doc/source/coding-style/formatting-tools.rst -------------------------------------------------------------------------------- /doc/source/coding-style/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pyansys-dev-guide/HEAD/doc/source/coding-style/index.rst -------------------------------------------------------------------------------- /doc/source/coding-style/pep8.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pyansys-dev-guide/HEAD/doc/source/coding-style/pep8.rst -------------------------------------------------------------------------------- /doc/source/coding-style/required-standard.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pyansys-dev-guide/HEAD/doc/source/coding-style/required-standard.rst -------------------------------------------------------------------------------- /doc/source/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pyansys-dev-guide/HEAD/doc/source/conf.py -------------------------------------------------------------------------------- /doc/source/content-writing/_static/AutoAPI-output-modified.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pyansys-dev-guide/HEAD/doc/source/content-writing/_static/AutoAPI-output-modified.png -------------------------------------------------------------------------------- /doc/source/content-writing/_static/GitHub-about-area.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pyansys-dev-guide/HEAD/doc/source/content-writing/_static/GitHub-about-area.png -------------------------------------------------------------------------------- /doc/source/content-writing/_static/GitHub-line-selector-suggestions.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pyansys-dev-guide/HEAD/doc/source/content-writing/_static/GitHub-line-selector-suggestions.png -------------------------------------------------------------------------------- /doc/source/content-writing/_static/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pyansys-dev-guide/HEAD/doc/source/content-writing/_static/README.md -------------------------------------------------------------------------------- /doc/source/content-writing/_static/assigning_yourself_PR.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pyansys-dev-guide/HEAD/doc/source/content-writing/_static/assigning_yourself_PR.png -------------------------------------------------------------------------------- /doc/source/content-writing/_static/card-dev-guide-home-page.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pyansys-dev-guide/HEAD/doc/source/content-writing/_static/card-dev-guide-home-page.png -------------------------------------------------------------------------------- /doc/source/content-writing/_static/card-docker-containers-pyansys-geometry.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pyansys-dev-guide/HEAD/doc/source/content-writing/_static/card-docker-containers-pyansys-geometry.png -------------------------------------------------------------------------------- /doc/source/content-writing/_static/cheat-sheet-nav-pane.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pyansys-dev-guide/HEAD/doc/source/content-writing/_static/cheat-sheet-nav-pane.png -------------------------------------------------------------------------------- /doc/source/content-writing/_static/collapsible_sections.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pyansys-dev-guide/HEAD/doc/source/content-writing/_static/collapsible_sections.png -------------------------------------------------------------------------------- /doc/source/content-writing/_static/icon-add-suggestion.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pyansys-dev-guide/HEAD/doc/source/content-writing/_static/icon-add-suggestion.png -------------------------------------------------------------------------------- /doc/source/content-writing/_static/multi-version-doc-selector.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pyansys-dev-guide/HEAD/doc/source/content-writing/_static/multi-version-doc-selector.png -------------------------------------------------------------------------------- /doc/source/content-writing/_static/notice-new-package-release.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pyansys-dev-guide/HEAD/doc/source/content-writing/_static/notice-new-package-release.png -------------------------------------------------------------------------------- /doc/source/content-writing/_static/notice-recent-pushes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pyansys-dev-guide/HEAD/doc/source/content-writing/_static/notice-recent-pushes.png -------------------------------------------------------------------------------- /doc/source/content-writing/_static/tab-set-double-dev-guide.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pyansys-dev-guide/HEAD/doc/source/content-writing/_static/tab-set-double-dev-guide.png -------------------------------------------------------------------------------- /doc/source/content-writing/_static/tab-set-single-dev-guide.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pyansys-dev-guide/HEAD/doc/source/content-writing/_static/tab-set-single-dev-guide.png -------------------------------------------------------------------------------- /doc/source/content-writing/content-contrib-setup/client-libraries.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pyansys-dev-guide/HEAD/doc/source/content-writing/content-contrib-setup/client-libraries.rst -------------------------------------------------------------------------------- /doc/source/content-writing/content-contrib-setup/content-dev-environment.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pyansys-dev-guide/HEAD/doc/source/content-writing/content-contrib-setup/content-dev-environment.rst -------------------------------------------------------------------------------- /doc/source/content-writing/content-contrib-setup/doc-resources.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pyansys-dev-guide/HEAD/doc/source/content-writing/content-contrib-setup/doc-resources.rst -------------------------------------------------------------------------------- /doc/source/content-writing/content-contrib-setup/essentials.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pyansys-dev-guide/HEAD/doc/source/content-writing/content-contrib-setup/essentials.rst -------------------------------------------------------------------------------- /doc/source/content-writing/content-contrib-setup/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pyansys-dev-guide/HEAD/doc/source/content-writing/content-contrib-setup/index.rst -------------------------------------------------------------------------------- /doc/source/content-writing/content-how-tos/add-sphinx-extensions.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pyansys-dev-guide/HEAD/doc/source/content-writing/content-how-tos/add-sphinx-extensions.rst -------------------------------------------------------------------------------- /doc/source/content-writing/content-how-tos/clone-branch.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pyansys-dev-guide/HEAD/doc/source/content-writing/content-how-tos/clone-branch.rst -------------------------------------------------------------------------------- /doc/source/content-writing/content-how-tos/create-PR.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pyansys-dev-guide/HEAD/doc/source/content-writing/content-how-tos/create-PR.rst -------------------------------------------------------------------------------- /doc/source/content-writing/content-how-tos/create-issues-discussions.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pyansys-dev-guide/HEAD/doc/source/content-writing/content-how-tos/create-issues-discussions.rst -------------------------------------------------------------------------------- /doc/source/content-writing/content-how-tos/edit-on-GitHub.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pyansys-dev-guide/HEAD/doc/source/content-writing/content-how-tos/edit-on-GitHub.rst -------------------------------------------------------------------------------- /doc/source/content-writing/content-how-tos/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pyansys-dev-guide/HEAD/doc/source/content-writing/content-how-tos/index.rst -------------------------------------------------------------------------------- /doc/source/content-writing/content-how-tos/request-bot-review.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pyansys-dev-guide/HEAD/doc/source/content-writing/content-how-tos/request-bot-review.rst -------------------------------------------------------------------------------- /doc/source/content-writing/content-how-tos/resolve-issues-causing-check-failures.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pyansys-dev-guide/HEAD/doc/source/content-writing/content-how-tos/resolve-issues-causing-check-failures.rst -------------------------------------------------------------------------------- /doc/source/content-writing/content-how-tos/review-PR.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pyansys-dev-guide/HEAD/doc/source/content-writing/content-how-tos/review-PR.rst -------------------------------------------------------------------------------- /doc/source/content-writing/content-how-tos/show_cheat_sheet_thumbnail.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pyansys-dev-guide/HEAD/doc/source/content-writing/content-how-tos/show_cheat_sheet_thumbnail.rst -------------------------------------------------------------------------------- /doc/source/content-writing/content-how-tos/view-revision-history.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pyansys-dev-guide/HEAD/doc/source/content-writing/content-how-tos/view-revision-history.rst -------------------------------------------------------------------------------- /doc/source/content-writing/content-how-tos/work-around-Vale.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pyansys-dev-guide/HEAD/doc/source/content-writing/content-how-tos/work-around-Vale.rst -------------------------------------------------------------------------------- /doc/source/content-writing/examples-writers/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pyansys-dev-guide/HEAD/doc/source/content-writing/examples-writers/index.rst -------------------------------------------------------------------------------- /doc/source/content-writing/examples-writers/nbsphinx.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pyansys-dev-guide/HEAD/doc/source/content-writing/examples-writers/nbsphinx.rst -------------------------------------------------------------------------------- /doc/source/content-writing/examples-writers/sphinx-gallery.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pyansys-dev-guide/HEAD/doc/source/content-writing/examples-writers/sphinx-gallery.rst -------------------------------------------------------------------------------- /doc/source/content-writing/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pyansys-dev-guide/HEAD/doc/source/content-writing/index.rst -------------------------------------------------------------------------------- /doc/source/content-writing/py-files-writers/code-comments-message-strings.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pyansys-dev-guide/HEAD/doc/source/content-writing/py-files-writers/code-comments-message-strings.rst -------------------------------------------------------------------------------- /doc/source/content-writing/py-files-writers/docstring-format-rules.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pyansys-dev-guide/HEAD/doc/source/content-writing/py-files-writers/docstring-format-rules.rst -------------------------------------------------------------------------------- /doc/source/content-writing/py-files-writers/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pyansys-dev-guide/HEAD/doc/source/content-writing/py-files-writers/index.rst -------------------------------------------------------------------------------- /doc/source/content-writing/py-files-writers/py-formatting.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pyansys-dev-guide/HEAD/doc/source/content-writing/py-files-writers/py-formatting.rst -------------------------------------------------------------------------------- /doc/source/content-writing/rst-files-writers/cards.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pyansys-dev-guide/HEAD/doc/source/content-writing/rst-files-writers/cards.rst -------------------------------------------------------------------------------- /doc/source/content-writing/rst-files-writers/code-blocks.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pyansys-dev-guide/HEAD/doc/source/content-writing/rst-files-writers/code-blocks.rst -------------------------------------------------------------------------------- /doc/source/content-writing/rst-files-writers/collapsible-sections.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pyansys-dev-guide/HEAD/doc/source/content-writing/rst-files-writers/collapsible-sections.rst -------------------------------------------------------------------------------- /doc/source/content-writing/rst-files-writers/doc-links.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pyansys-dev-guide/HEAD/doc/source/content-writing/rst-files-writers/doc-links.rst -------------------------------------------------------------------------------- /doc/source/content-writing/rst-files-writers/images.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pyansys-dev-guide/HEAD/doc/source/content-writing/rst-files-writers/images.rst -------------------------------------------------------------------------------- /doc/source/content-writing/rst-files-writers/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pyansys-dev-guide/HEAD/doc/source/content-writing/rst-files-writers/index.rst -------------------------------------------------------------------------------- /doc/source/content-writing/rst-files-writers/notices.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pyansys-dev-guide/HEAD/doc/source/content-writing/rst-files-writers/notices.rst -------------------------------------------------------------------------------- /doc/source/content-writing/rst-files-writers/rst-file-formatting.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pyansys-dev-guide/HEAD/doc/source/content-writing/rst-files-writers/rst-file-formatting.rst -------------------------------------------------------------------------------- /doc/source/content-writing/rst-files-writers/rst-format-rules.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pyansys-dev-guide/HEAD/doc/source/content-writing/rst-files-writers/rst-format-rules.rst -------------------------------------------------------------------------------- /doc/source/content-writing/rst-files-writers/tab-sets.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pyansys-dev-guide/HEAD/doc/source/content-writing/rst-files-writers/tab-sets.rst -------------------------------------------------------------------------------- /doc/source/content-writing/rst-files-writers/tables.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pyansys-dev-guide/HEAD/doc/source/content-writing/rst-files-writers/tables.rst -------------------------------------------------------------------------------- /doc/source/doc-style/code/required_conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pyansys-dev-guide/HEAD/doc/source/doc-style/code/required_conf.py -------------------------------------------------------------------------------- /doc/source/doc-style/code/required_make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pyansys-dev-guide/HEAD/doc/source/doc-style/code/required_make.bat -------------------------------------------------------------------------------- /doc/source/doc-style/code/required_makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pyansys-dev-guide/HEAD/doc/source/doc-style/code/required_makefile -------------------------------------------------------------------------------- /doc/source/doc-style/code/sample_func.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pyansys-dev-guide/HEAD/doc/source/doc-style/code/sample_func.py -------------------------------------------------------------------------------- /doc/source/doc-style/doc-configuration.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pyansys-dev-guide/HEAD/doc/source/doc-style/doc-configuration.rst -------------------------------------------------------------------------------- /doc/source/doc-style/docstrings.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pyansys-dev-guide/HEAD/doc/source/doc-style/docstrings.rst -------------------------------------------------------------------------------- /doc/source/doc-style/formatting-tools.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pyansys-dev-guide/HEAD/doc/source/doc-style/formatting-tools.rst -------------------------------------------------------------------------------- /doc/source/doc-style/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pyansys-dev-guide/HEAD/doc/source/doc-style/index.rst -------------------------------------------------------------------------------- /doc/source/getting-started/administration.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pyansys-dev-guide/HEAD/doc/source/getting-started/administration.rst -------------------------------------------------------------------------------- /doc/source/getting-started/basic.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pyansys-dev-guide/HEAD/doc/source/getting-started/basic.rst -------------------------------------------------------------------------------- /doc/source/getting-started/componentization.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pyansys-dev-guide/HEAD/doc/source/getting-started/componentization.rst -------------------------------------------------------------------------------- /doc/source/getting-started/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pyansys-dev-guide/HEAD/doc/source/getting-started/index.rst -------------------------------------------------------------------------------- /doc/source/how-to/code/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pyansys-dev-guide/HEAD/doc/source/how-to/code/build.yml -------------------------------------------------------------------------------- /doc/source/how-to/code/docs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pyansys-dev-guide/HEAD/doc/source/how-to/code/docs.yml -------------------------------------------------------------------------------- /doc/source/how-to/code/pyansys_logging.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pyansys-dev-guide/HEAD/doc/source/how-to/code/pyansys_logging.py -------------------------------------------------------------------------------- /doc/source/how-to/code/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pyansys-dev-guide/HEAD/doc/source/how-to/code/release.yml -------------------------------------------------------------------------------- /doc/source/how-to/code/style.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pyansys-dev-guide/HEAD/doc/source/how-to/code/style.yml -------------------------------------------------------------------------------- /doc/source/how-to/code/test_pyansys_logging.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pyansys-dev-guide/HEAD/doc/source/how-to/code/test_pyansys_logging.py -------------------------------------------------------------------------------- /doc/source/how-to/code/tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pyansys-dev-guide/HEAD/doc/source/how-to/code/tests.yml -------------------------------------------------------------------------------- /doc/source/how-to/compatibility.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pyansys-dev-guide/HEAD/doc/source/how-to/compatibility.rst -------------------------------------------------------------------------------- /doc/source/how-to/continuous-integration.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pyansys-dev-guide/HEAD/doc/source/how-to/continuous-integration.rst -------------------------------------------------------------------------------- /doc/source/how-to/contributing.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pyansys-dev-guide/HEAD/doc/source/how-to/contributing.rst -------------------------------------------------------------------------------- /doc/source/how-to/deprecating.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pyansys-dev-guide/HEAD/doc/source/how-to/deprecating.rst -------------------------------------------------------------------------------- /doc/source/how-to/diag/doc_layout.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pyansys-dev-guide/HEAD/doc/source/how-to/diag/doc_layout.rst -------------------------------------------------------------------------------- /doc/source/how-to/diag/main_branch.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pyansys-dev-guide/HEAD/doc/source/how-to/diag/main_branch.rst -------------------------------------------------------------------------------- /doc/source/how-to/diag/release_branch.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pyansys-dev-guide/HEAD/doc/source/how-to/diag/release_branch.rst -------------------------------------------------------------------------------- /doc/source/how-to/dns-configuration.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pyansys-dev-guide/HEAD/doc/source/how-to/dns-configuration.rst -------------------------------------------------------------------------------- /doc/source/how-to/documenting.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pyansys-dev-guide/HEAD/doc/source/how-to/documenting.rst -------------------------------------------------------------------------------- /doc/source/how-to/grpc-api-packages.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pyansys-dev-guide/HEAD/doc/source/how-to/grpc-api-packages.rst -------------------------------------------------------------------------------- /doc/source/how-to/images/github_sections.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pyansys-dev-guide/HEAD/doc/source/how-to/images/github_sections.png -------------------------------------------------------------------------------- /doc/source/how-to/images/guidelines_chart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pyansys-dev-guide/HEAD/doc/source/how-to/images/guidelines_chart.png -------------------------------------------------------------------------------- /doc/source/how-to/images/log_flow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pyansys-dev-guide/HEAD/doc/source/how-to/images/log_flow.png -------------------------------------------------------------------------------- /doc/source/how-to/images/windows_terminal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pyansys-dev-guide/HEAD/doc/source/how-to/images/windows_terminal.png -------------------------------------------------------------------------------- /doc/source/how-to/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pyansys-dev-guide/HEAD/doc/source/how-to/index.rst -------------------------------------------------------------------------------- /doc/source/how-to/logging.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pyansys-dev-guide/HEAD/doc/source/how-to/logging.rst -------------------------------------------------------------------------------- /doc/source/how-to/packaging.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pyansys-dev-guide/HEAD/doc/source/how-to/packaging.rst -------------------------------------------------------------------------------- /doc/source/how-to/releasing.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pyansys-dev-guide/HEAD/doc/source/how-to/releasing.rst -------------------------------------------------------------------------------- /doc/source/how-to/repository-protection.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pyansys-dev-guide/HEAD/doc/source/how-to/repository-protection.rst -------------------------------------------------------------------------------- /doc/source/how-to/setting-up.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pyansys-dev-guide/HEAD/doc/source/how-to/setting-up.rst -------------------------------------------------------------------------------- /doc/source/how-to/supporting-python-versions.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pyansys-dev-guide/HEAD/doc/source/how-to/supporting-python-versions.rst -------------------------------------------------------------------------------- /doc/source/how-to/testing.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pyansys-dev-guide/HEAD/doc/source/how-to/testing.rst -------------------------------------------------------------------------------- /doc/source/how-to/vulnerabilities.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pyansys-dev-guide/HEAD/doc/source/how-to/vulnerabilities.rst -------------------------------------------------------------------------------- /doc/source/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pyansys-dev-guide/HEAD/doc/source/index.rst -------------------------------------------------------------------------------- /doc/source/links.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pyansys-dev-guide/HEAD/doc/source/links.rst -------------------------------------------------------------------------------- /doc/source/packaging/build-systems.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pyansys-dev-guide/HEAD/doc/source/packaging/build-systems.rst -------------------------------------------------------------------------------- /doc/source/packaging/code/authors_code.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pyansys-dev-guide/HEAD/doc/source/packaging/code/authors_code.rst -------------------------------------------------------------------------------- /doc/source/packaging/code/changelog_file.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pyansys-dev-guide/HEAD/doc/source/packaging/code/changelog_file.md -------------------------------------------------------------------------------- /doc/source/packaging/code/code_of_conduct_file.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pyansys-dev-guide/HEAD/doc/source/packaging/code/code_of_conduct_file.md -------------------------------------------------------------------------------- /doc/source/packaging/code/contributing_file.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pyansys-dev-guide/HEAD/doc/source/packaging/code/contributing_file.md -------------------------------------------------------------------------------- /doc/source/packaging/code/contributors_file.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pyansys-dev-guide/HEAD/doc/source/packaging/code/contributors_file.md -------------------------------------------------------------------------------- /doc/source/packaging/code/license_mit_code.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pyansys-dev-guide/HEAD/doc/source/packaging/code/license_mit_code.rst -------------------------------------------------------------------------------- /doc/source/packaging/code/pyproject_code.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pyansys-dev-guide/HEAD/doc/source/packaging/code/pyproject_code.rst -------------------------------------------------------------------------------- /doc/source/packaging/code/pyproject_flit_code.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pyansys-dev-guide/HEAD/doc/source/packaging/code/pyproject_flit_code.rst -------------------------------------------------------------------------------- /doc/source/packaging/code/pyproject_poetry_code.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pyansys-dev-guide/HEAD/doc/source/packaging/code/pyproject_poetry_code.rst -------------------------------------------------------------------------------- /doc/source/packaging/code/pyproject_setuptools_code.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pyansys-dev-guide/HEAD/doc/source/packaging/code/pyproject_setuptools_code.rst -------------------------------------------------------------------------------- /doc/source/packaging/code/setup_file_code.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pyansys-dev-guide/HEAD/doc/source/packaging/code/setup_file_code.rst -------------------------------------------------------------------------------- /doc/source/packaging/diag/architecture_diag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pyansys-dev-guide/HEAD/doc/source/packaging/diag/architecture_diag.png -------------------------------------------------------------------------------- /doc/source/packaging/diag/build_system_diag.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pyansys-dev-guide/HEAD/doc/source/packaging/diag/build_system_diag.rst -------------------------------------------------------------------------------- /doc/source/packaging/diag/doc_structure_diag.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pyansys-dev-guide/HEAD/doc/source/packaging/diag/doc_structure_diag.rst -------------------------------------------------------------------------------- /doc/source/packaging/diag/grpc_structure_diag.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pyansys-dev-guide/HEAD/doc/source/packaging/diag/grpc_structure_diag.rst -------------------------------------------------------------------------------- /doc/source/packaging/diag/pyansys_namespace_diag.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pyansys-dev-guide/HEAD/doc/source/packaging/diag/pyansys_namespace_diag.rst -------------------------------------------------------------------------------- /doc/source/packaging/diag/pyproduct_library_structure_diag.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pyansys-dev-guide/HEAD/doc/source/packaging/diag/pyproduct_library_structure_diag.rst -------------------------------------------------------------------------------- /doc/source/packaging/diag/python_library_diag.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pyansys-dev-guide/HEAD/doc/source/packaging/diag/python_library_diag.rst -------------------------------------------------------------------------------- /doc/source/packaging/diag/src_structure_diag.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pyansys-dev-guide/HEAD/doc/source/packaging/diag/src_structure_diag.rst -------------------------------------------------------------------------------- /doc/source/packaging/diag/tests_structure_diag.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pyansys-dev-guide/HEAD/doc/source/packaging/diag/tests_structure_diag.rst -------------------------------------------------------------------------------- /doc/source/packaging/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pyansys-dev-guide/HEAD/doc/source/packaging/index.rst -------------------------------------------------------------------------------- /doc/source/packaging/structure.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pyansys-dev-guide/HEAD/doc/source/packaging/structure.rst -------------------------------------------------------------------------------- /doc/source/packaging/templates.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pyansys-dev-guide/HEAD/doc/source/packaging/templates.rst -------------------------------------------------------------------------------- /doc/styles/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pyansys-dev-guide/HEAD/doc/styles/.gitignore -------------------------------------------------------------------------------- /doc/styles/config/vocabularies/ANSYS/accept.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pyansys-dev-guide/HEAD/doc/styles/config/vocabularies/ANSYS/accept.txt -------------------------------------------------------------------------------- /doc/styles/config/vocabularies/ANSYS/reject.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pyansys-dev-guide/HEAD/examples/README.rst -------------------------------------------------------------------------------- /examples/pyvista_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pyansys-dev-guide/HEAD/examples/pyvista_example.py -------------------------------------------------------------------------------- /requirements/requirements_doc.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pyansys-dev-guide/HEAD/requirements/requirements_doc.txt -------------------------------------------------------------------------------- /ruff.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pyansys-dev-guide/HEAD/ruff.toml -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pyansys-dev-guide/HEAD/tox.ini --------------------------------------------------------------------------------