orca-step 2026.6.27__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (63) hide show
  1. orca_step-2026.6.27/AUTHORS.rst +5 -0
  2. orca_step-2026.6.27/CONTRIBUTING.rst +113 -0
  3. orca_step-2026.6.27/HISTORY.rst +9 -0
  4. orca_step-2026.6.27/LICENSE +31 -0
  5. orca_step-2026.6.27/MANIFEST.in +14 -0
  6. orca_step-2026.6.27/PKG-INFO +127 -0
  7. orca_step-2026.6.27/README.rst +70 -0
  8. orca_step-2026.6.27/docs/Makefile +177 -0
  9. orca_step-2026.6.27/docs/_static/SEAMM Inverted 288x181.png +0 -0
  10. orca_step-2026.6.27/docs/_static/SEAMM logo.png +0 -0
  11. orca_step-2026.6.27/docs/_static/molssi_main_logo.png +0 -0
  12. orca_step-2026.6.27/docs/_static/molssi_main_logo_inverted_white.png +0 -0
  13. orca_step-2026.6.27/docs/_static/molssi_square.png +0 -0
  14. orca_step-2026.6.27/docs/_static/nsf.png +0 -0
  15. orca_step-2026.6.27/docs/api/index.rst +17 -0
  16. orca_step-2026.6.27/docs/authors.rst +1 -0
  17. orca_step-2026.6.27/docs/conf.py +306 -0
  18. orca_step-2026.6.27/docs/developer_guide/campaigns/YYYY-MM-DD/index.rst +16 -0
  19. orca_step-2026.6.27/docs/developer_guide/campaigns/index.rst +17 -0
  20. orca_step-2026.6.27/docs/developer_guide/contributing.rst +1 -0
  21. orca_step-2026.6.27/docs/developer_guide/index.rst +28 -0
  22. orca_step-2026.6.27/docs/developer_guide/installation.rst +54 -0
  23. orca_step-2026.6.27/docs/developer_guide/usage.rst +7 -0
  24. orca_step-2026.6.27/docs/getting_started/index.rst +31 -0
  25. orca_step-2026.6.27/docs/history.rst +1 -0
  26. orca_step-2026.6.27/docs/index.rst +72 -0
  27. orca_step-2026.6.27/docs/make.bat +242 -0
  28. orca_step-2026.6.27/docs/user_guide/index.rst +22 -0
  29. orca_step-2026.6.27/orca_step/__init__.py +37 -0
  30. orca_step-2026.6.27/orca_step/__main__.py +16 -0
  31. orca_step-2026.6.27/orca_step/_version.py +21 -0
  32. orca_step-2026.6.27/orca_step/data/configuration.txt +16 -0
  33. orca_step-2026.6.27/orca_step/data/properties.csv +1 -0
  34. orca_step-2026.6.27/orca_step/data/references.bib +40 -0
  35. orca_step-2026.6.27/orca_step/energy.py +186 -0
  36. orca_step-2026.6.27/orca_step/energy_parameters.py +98 -0
  37. orca_step-2026.6.27/orca_step/energy_step.py +25 -0
  38. orca_step-2026.6.27/orca_step/installer.py +39 -0
  39. orca_step-2026.6.27/orca_step/metadata.py +80 -0
  40. orca_step-2026.6.27/orca_step/optimization.py +114 -0
  41. orca_step-2026.6.27/orca_step/optimization_parameters.py +30 -0
  42. orca_step-2026.6.27/orca_step/optimization_step.py +25 -0
  43. orca_step-2026.6.27/orca_step/orca.py +103 -0
  44. orca_step-2026.6.27/orca_step/orca_base.py +271 -0
  45. orca_step-2026.6.27/orca_step/orca_step.py +65 -0
  46. orca_step-2026.6.27/orca_step/tk_energy.py +90 -0
  47. orca_step-2026.6.27/orca_step/tk_optimization.py +35 -0
  48. orca_step-2026.6.27/orca_step/tk_orca.py +63 -0
  49. orca_step-2026.6.27/orca_step.egg-info/PKG-INFO +127 -0
  50. orca_step-2026.6.27/orca_step.egg-info/SOURCES.txt +62 -0
  51. orca_step-2026.6.27/orca_step.egg-info/dependency_links.txt +1 -0
  52. orca_step-2026.6.27/orca_step.egg-info/entry_points.txt +16 -0
  53. orca_step-2026.6.27/orca_step.egg-info/requires.txt +7 -0
  54. orca_step-2026.6.27/orca_step.egg-info/top_level.txt +1 -0
  55. orca_step-2026.6.27/orca_step.egg-info/zip-safe +1 -0
  56. orca_step-2026.6.27/requirements.txt +7 -0
  57. orca_step-2026.6.27/requirements_dev.txt +10 -0
  58. orca_step-2026.6.27/requirements_install.txt +4 -0
  59. orca_step-2026.6.27/setup.cfg +27 -0
  60. orca_step-2026.6.27/setup.py +98 -0
  61. orca_step-2026.6.27/tests/__init__.py +3 -0
  62. orca_step-2026.6.27/tests/test_orca_step.py +149 -0
  63. orca_step-2026.6.27/versioneer.py +1883 -0
@@ -0,0 +1,5 @@
1
+ Development Team
2
+ ----------------
3
+
4
+ * Paul Saxe <psaxe@molssi.org> (Lead)
5
+ * Why don't you join the team? Become a contributor!
@@ -0,0 +1,113 @@
1
+ .. highlight:: shell
2
+
3
+ ============
4
+ Contributing
5
+ ============
6
+
7
+ Contributions are welcome, and they are greatly appreciated! Every
8
+ little bit helps, and credit will always be given.
9
+
10
+ You can contribute in many ways:
11
+
12
+ Types of Contributions
13
+ ----------------------
14
+
15
+ Report Bugs
16
+ ~~~~~~~~~~~
17
+
18
+ Report bugs at https://github.com/molssi-seamm/orca_step/issues.
19
+
20
+ If you are reporting a bug, please include:
21
+
22
+ * Your operating system name and version.
23
+ * Any details about your local setup that might be helpful in troubleshooting.
24
+ * Detailed steps to reproduce the bug.
25
+
26
+ Fix Bugs
27
+ ~~~~~~~~
28
+
29
+ Look through the GitHub issues for bugs. Anything tagged with "bug"
30
+ and "help wanted" is open to whoever wants to implement it.
31
+
32
+ Implement Features
33
+ ~~~~~~~~~~~~~~~~~~
34
+
35
+ Look through the GitHub issues for features. Anything tagged with "enhancement"
36
+ and "help wanted" is open to whoever wants to implement it.
37
+
38
+ Write Documentation
39
+ ~~~~~~~~~~~~~~~~~~~
40
+
41
+ ORCA Step could always use more documentation, whether as part of the
42
+ official ORCA Step docs, in docstrings, or even on the web in blog posts,
43
+ articles, and such.
44
+
45
+ Submit Feedback
46
+ ~~~~~~~~~~~~~~~
47
+
48
+ The best way to send feedback is to file an issue at https://github.com/molssi-seamm/orca_step/issues.
49
+
50
+ If you are proposing a feature:
51
+
52
+ * Explain in detail how it would work.
53
+ * Keep the scope as narrow as possible, to make it easier to implement.
54
+ * Remember that this is a volunteer-driven project, and that contributions
55
+ are welcome :)
56
+
57
+ Get Started!
58
+ ------------
59
+
60
+ Ready to contribute? Here's how to set up `orca_step` for local development.
61
+
62
+ 1. Fork the `orca_step` repo on GitHub.
63
+ 2. Clone your fork locally::
64
+
65
+ $ git clone git@github.com:your_name_here/orca_step.git
66
+
67
+ 3. Install your local copy into a virtualenv. Assuming you have virtualenvwrapper installed, this is how you set up your fork for local development::
68
+
69
+ $ mkvirtualenv orca_step
70
+ $ cd orca_step/
71
+ $ python setup.py develop
72
+
73
+ 4. Create a branch for local development::
74
+
75
+ $ git checkout -b name-of-your-bugfix-or-feature
76
+
77
+ Now you can make your changes locally.
78
+
79
+ 5. When you're done making changes, check that your changes pass flake8 and the tests, including testing other Python versions with tox::
80
+
81
+ $ flake8 orca_step tests
82
+ $ python setup.py test or py.test
83
+ $ tox
84
+
85
+ To get flake8 and tox, just pip install them into your virtualenv.
86
+
87
+ 6. Commit your changes and push your branch to GitHub::
88
+
89
+ $ git add .
90
+ $ git commit -m "Your detailed description of your changes."
91
+ $ git push origin name-of-your-bugfix-or-feature
92
+
93
+ 7. Submit a pull request through the GitHub website.
94
+
95
+ Pull Request Guidelines
96
+ -----------------------
97
+
98
+ Before you submit a pull request, check that it meets these guidelines:
99
+
100
+ 1. The pull request should include tests.
101
+ 2. If the pull request adds functionality, the docs should be updated. Put
102
+ your new functionality into a function with a docstring, and add the
103
+ feature to the list in README.rst.
104
+ 3. The pull request should work for Python 2.6, 2.7, 3.3, 3.4 and 3.5, and for PyPy. Check
105
+ https://travis-ci.org/molssi-seamm/orca_step/pull_requests
106
+ and make sure that the tests pass for all supported Python versions.
107
+
108
+ Tips
109
+ ----
110
+
111
+ To run a subset of tests::
112
+
113
+ $ py.test tests.test_orca_step
@@ -0,0 +1,9 @@
1
+ =======
2
+ History
3
+ =======
4
+
5
+ 2026.6.27 -- Initial release of the ORCA step
6
+ * A sub-flowchart ORCA plug-in with Energy and Optimization sub-steps.
7
+ * Single-point energies and geometry optimizations, including DLPNO-CCSD(T).
8
+ * The method and basis set can be set explicitly, or taken from a preceding
9
+ Model Chemistry step. Basis sets use ORCA's built-in families.
@@ -0,0 +1,31 @@
1
+
2
+ BSD 3-Clause License
3
+
4
+ Copyright (c) 2026, Paul Saxe
5
+ All rights reserved.
6
+
7
+ Redistribution and use in source and binary forms, with or without
8
+ modification, are permitted provided that the following conditions are met:
9
+
10
+ 1. Redistributions of source code must retain the above copyright notice, this
11
+ list of conditions and the following disclaimer.
12
+
13
+ 2. Redistributions in binary form must reproduce the above copyright notice,
14
+ this list of conditions and the following disclaimer in the documentation
15
+ and/or other materials provided with the distribution.
16
+
17
+ 3. Neither the name of the copyright holder nor the names of its
18
+ contributors may be used to endorse or promote products derived from
19
+ this software without specific prior written permission.
20
+
21
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
22
+ AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
23
+ IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
24
+ DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
25
+ FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
26
+ DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
27
+ SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
28
+ CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
29
+ OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
30
+ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
31
+
@@ -0,0 +1,14 @@
1
+ include AUTHORS.rst
2
+ include CONTRIBUTING.rst
3
+ include HISTORY.rst
4
+ include LICENSE
5
+ include README.rst
6
+ include requirements*
7
+ include versioneer.py
8
+
9
+ recursive-include orca_step/data *
10
+ recursive-include tests *
11
+ recursive-include docs *.rst conf.py Makefile make.bat *.jpg *.png *.gif
12
+
13
+ recursive-exclude * __pycache__
14
+ recursive-exclude * *.py[co]
@@ -0,0 +1,127 @@
1
+ Metadata-Version: 2.4
2
+ Name: orca_step
3
+ Version: 2026.6.27
4
+ Summary: A SEAMM plug-in for ORCA
5
+ Home-page: https://github.com/molssi-seamm/orca_step
6
+ Author: Paul Saxe
7
+ Author-email: psaxe@molssi.org
8
+ License: BSD-3-Clause
9
+ Keywords: SEAMM,SEAMMplugin,flowchart
10
+ Platform: Linux
11
+ Platform: Mac OS-X
12
+ Platform: Unix
13
+ Platform: Windows
14
+ Classifier: Environment :: Plugins
15
+ Classifier: Development Status :: 2 - Pre-Alpha
16
+ Classifier: Intended Audience :: Science/Research
17
+ Classifier: Topic :: Scientific/Engineering :: Chemistry
18
+ Classifier: Topic :: Scientific/Engineering :: Physics
19
+ Classifier: License :: OSI Approved :: BSD License
20
+ Classifier: Natural Language :: English
21
+ Classifier: Programming Language :: Python :: 3 :: Only
22
+ Classifier: Programming Language :: Python :: 3.8
23
+ Classifier: Programming Language :: Python :: 3.9
24
+ Description-Content-Type: text/x-rst
25
+ License-File: LICENSE
26
+ License-File: AUTHORS.rst
27
+ Requires-Dist: numpy
28
+ Requires-Dist: seamm
29
+ Requires-Dist: molsystem
30
+ Requires-Dist: seamm-util
31
+ Requires-Dist: seamm-widgets
32
+ Requires-Dist: seamm-exec
33
+ Requires-Dist: cclib
34
+ Dynamic: author
35
+ Dynamic: author-email
36
+ Dynamic: classifier
37
+ Dynamic: description
38
+ Dynamic: description-content-type
39
+ Dynamic: home-page
40
+ Dynamic: keywords
41
+ Dynamic: license
42
+ Dynamic: license-file
43
+ Dynamic: platform
44
+ Dynamic: requires-dist
45
+ Dynamic: summary
46
+
47
+ ==================
48
+ SEAMM ORCA Plug-in
49
+ ==================
50
+
51
+ .. image:: https://img.shields.io/github/issues-pr-raw/molssi-seamm/orca_step
52
+ :target: https://github.com/molssi-seamm/orca_step/pulls
53
+ :alt: GitHub pull requests
54
+
55
+ .. image:: https://github.com/molssi-seamm/orca_step/workflows/CI/badge.svg
56
+ :target: https://github.com/molssi-seamm/orca_step/actions
57
+ :alt: Build Status
58
+
59
+ .. image:: https://codecov.io/gh/molssi-seamm/orca_step/branch/master/graph/badge.svg
60
+ :target: https://codecov.io/gh/molssi-seamm/orca_step
61
+ :alt: Code Coverage
62
+
63
+ .. image:: https://github.com/molssi-seamm/orca_step/workflows/CodeQL/badge.svg
64
+ :target: https://github.com/molssi-seamm/orca_step/security/code-scanning
65
+ :alt: Code Quality
66
+
67
+ .. image:: https://github.com/molssi-seamm/orca_step/workflows/Release/badge.svg
68
+ :target: https://molssi-seamm.github.io/orca_step/index.html
69
+ :alt: Documentation Status
70
+
71
+ .. image:: https://img.shields.io/pypi/v/orca_step.svg
72
+ :target: https://pypi.python.org/pypi/orca_step
73
+ :alt: PyPi VERSION
74
+
75
+ A SEAMM plug-in for ORCA
76
+
77
+ * Free software: BSD-3-Clause
78
+ * Documentation: https://molssi-seamm.github.io/orca_step/index.html
79
+ * Code: https://github.com/molssi-seamm/orca_step
80
+
81
+ Features
82
+ --------
83
+
84
+ A SEAMM plug-in for ORCA, a general-purpose quantum-chemistry program, with an
85
+ emphasis on accurate molecular calculations such as DLPNO-CCSD(T).
86
+
87
+ Like the MOPAC and Gaussian steps, the ORCA step is a sub-flowchart: you add an
88
+ ORCA node to your flowchart and then build a small sub-flowchart of ORCA
89
+ capabilities inside it. Initially the available capabilities are:
90
+
91
+ * **Energy** -- a single-point energy.
92
+ * **Optimization** -- a geometry optimization.
93
+
94
+ Further capabilities (frequencies, properties, ...) will be added.
95
+
96
+ Methods are described by the step's metadata and can be set either explicitly in
97
+ the ORCA dialog (similar to the Gaussian step) or, by default, taken from a
98
+ preceding **Model Chemistry** step. Basis sets default to ORCA's built-in
99
+ families (Pople, Dunning ``cc``, and Karlsruhe ``def2``), with the Basis Set
100
+ Exchange available as a planned opt-in source.
101
+
102
+ Acknowledgements
103
+ ----------------
104
+
105
+ This package was created with the `molssi-seamm/cookiecutter-seamm-plugin`_ tool, which
106
+ is based on the excellent Cookiecutter_.
107
+
108
+ .. _Cookiecutter: https://github.com/audreyr/cookiecutter
109
+ .. _`molssi-seamm/cookiecutter-seamm-plugin`: https://github.com/molssi-seamm/cookiecutter-seamm-plugin
110
+
111
+ Developed by the Molecular Sciences Software Institute (MolSSI_),
112
+ which receives funding from the `National Science Foundation`_ under
113
+ award CHE-2136142.
114
+
115
+ .. _MolSSI: https://molssi.org
116
+ .. _`National Science Foundation`: https://www.nsf.gov
117
+
118
+
119
+ =======
120
+ History
121
+ =======
122
+
123
+ 2026.6.27 -- Initial release of the ORCA step
124
+ * A sub-flowchart ORCA plug-in with Energy and Optimization sub-steps.
125
+ * Single-point energies and geometry optimizations, including DLPNO-CCSD(T).
126
+ * The method and basis set can be set explicitly, or taken from a preceding
127
+ Model Chemistry step. Basis sets use ORCA's built-in families.
@@ -0,0 +1,70 @@
1
+ ==================
2
+ SEAMM ORCA Plug-in
3
+ ==================
4
+
5
+ .. image:: https://img.shields.io/github/issues-pr-raw/molssi-seamm/orca_step
6
+ :target: https://github.com/molssi-seamm/orca_step/pulls
7
+ :alt: GitHub pull requests
8
+
9
+ .. image:: https://github.com/molssi-seamm/orca_step/workflows/CI/badge.svg
10
+ :target: https://github.com/molssi-seamm/orca_step/actions
11
+ :alt: Build Status
12
+
13
+ .. image:: https://codecov.io/gh/molssi-seamm/orca_step/branch/master/graph/badge.svg
14
+ :target: https://codecov.io/gh/molssi-seamm/orca_step
15
+ :alt: Code Coverage
16
+
17
+ .. image:: https://github.com/molssi-seamm/orca_step/workflows/CodeQL/badge.svg
18
+ :target: https://github.com/molssi-seamm/orca_step/security/code-scanning
19
+ :alt: Code Quality
20
+
21
+ .. image:: https://github.com/molssi-seamm/orca_step/workflows/Release/badge.svg
22
+ :target: https://molssi-seamm.github.io/orca_step/index.html
23
+ :alt: Documentation Status
24
+
25
+ .. image:: https://img.shields.io/pypi/v/orca_step.svg
26
+ :target: https://pypi.python.org/pypi/orca_step
27
+ :alt: PyPi VERSION
28
+
29
+ A SEAMM plug-in for ORCA
30
+
31
+ * Free software: BSD-3-Clause
32
+ * Documentation: https://molssi-seamm.github.io/orca_step/index.html
33
+ * Code: https://github.com/molssi-seamm/orca_step
34
+
35
+ Features
36
+ --------
37
+
38
+ A SEAMM plug-in for ORCA, a general-purpose quantum-chemistry program, with an
39
+ emphasis on accurate molecular calculations such as DLPNO-CCSD(T).
40
+
41
+ Like the MOPAC and Gaussian steps, the ORCA step is a sub-flowchart: you add an
42
+ ORCA node to your flowchart and then build a small sub-flowchart of ORCA
43
+ capabilities inside it. Initially the available capabilities are:
44
+
45
+ * **Energy** -- a single-point energy.
46
+ * **Optimization** -- a geometry optimization.
47
+
48
+ Further capabilities (frequencies, properties, ...) will be added.
49
+
50
+ Methods are described by the step's metadata and can be set either explicitly in
51
+ the ORCA dialog (similar to the Gaussian step) or, by default, taken from a
52
+ preceding **Model Chemistry** step. Basis sets default to ORCA's built-in
53
+ families (Pople, Dunning ``cc``, and Karlsruhe ``def2``), with the Basis Set
54
+ Exchange available as a planned opt-in source.
55
+
56
+ Acknowledgements
57
+ ----------------
58
+
59
+ This package was created with the `molssi-seamm/cookiecutter-seamm-plugin`_ tool, which
60
+ is based on the excellent Cookiecutter_.
61
+
62
+ .. _Cookiecutter: https://github.com/audreyr/cookiecutter
63
+ .. _`molssi-seamm/cookiecutter-seamm-plugin`: https://github.com/molssi-seamm/cookiecutter-seamm-plugin
64
+
65
+ Developed by the Molecular Sciences Software Institute (MolSSI_),
66
+ which receives funding from the `National Science Foundation`_ under
67
+ award CHE-2136142.
68
+
69
+ .. _MolSSI: https://molssi.org
70
+ .. _`National Science Foundation`: https://www.nsf.gov
@@ -0,0 +1,177 @@
1
+ # Makefile for Sphinx documentation
2
+ #
3
+
4
+ # You can set these variables from the command line.
5
+ SPHINXOPTS =
6
+ SPHINXBUILD = sphinx-build
7
+ PAPER =
8
+ BUILDDIR = _build
9
+
10
+ # User-friendly check for sphinx-build
11
+ ifeq ($(shell which $(SPHINXBUILD) >/dev/null 2>&1; echo $$?), 1)
12
+ $(error The '$(SPHINXBUILD)' command was not found. Make sure you have Sphinx installed, then set the SPHINXBUILD environment variable to point to the full path of the '$(SPHINXBUILD)' executable. Alternatively you can add the directory with the executable to your PATH. If you don't have Sphinx installed, grab it from http://sphinx-doc.org/)
13
+ endif
14
+
15
+ # Internal variables.
16
+ PAPEROPT_a4 = -D latex_paper_size=a4
17
+ PAPEROPT_letter = -D latex_paper_size=letter
18
+ ALLSPHINXOPTS = -d $(BUILDDIR)/doctrees $(PAPEROPT_$(PAPER)) $(SPHINXOPTS) .
19
+ # the i18n builder cannot share the environment and doctrees with the others
20
+ I18NSPHINXOPTS = $(PAPEROPT_$(PAPER)) $(SPHINXOPTS) .
21
+
22
+ .PHONY: help clean html dirhtml singlehtml pickle json htmlhelp qthelp devhelp epub latex latexpdf text man changes linkcheck doctest gettext
23
+
24
+ help:
25
+ @echo "Please use \`make <target>' where <target> is one of"
26
+ @echo " html to make standalone HTML files"
27
+ @echo " dirhtml to make HTML files named index.html in directories"
28
+ @echo " singlehtml to make a single large HTML file"
29
+ @echo " pickle to make pickle files"
30
+ @echo " json to make JSON files"
31
+ @echo " htmlhelp to make HTML files and a HTML help project"
32
+ @echo " qthelp to make HTML files and a qthelp project"
33
+ @echo " devhelp to make HTML files and a Devhelp project"
34
+ @echo " epub to make an epub"
35
+ @echo " latex to make LaTeX files, you can set PAPER=a4 or PAPER=letter"
36
+ @echo " latexpdf to make LaTeX files and run them through pdflatex"
37
+ @echo " latexpdfja to make LaTeX files and run them through platex/dvipdfmx"
38
+ @echo " text to make text files"
39
+ @echo " man to make manual pages"
40
+ @echo " texinfo to make Texinfo files"
41
+ @echo " info to make Texinfo files and run them through makeinfo"
42
+ @echo " gettext to make PO message catalogs"
43
+ @echo " changes to make an overview of all changed/added/deprecated items"
44
+ @echo " xml to make Docutils-native XML files"
45
+ @echo " pseudoxml to make pseudoxml-XML files for display purposes"
46
+ @echo " linkcheck to check all external links for integrity"
47
+ @echo " doctest to run all doctests embedded in the documentation (if enabled)"
48
+
49
+ clean:
50
+ rm -rf $(BUILDDIR)/*
51
+
52
+ html:
53
+ $(SPHINXBUILD) -b html $(ALLSPHINXOPTS) $(BUILDDIR)/html
54
+ @echo
55
+ @echo "Build finished. The HTML pages are in $(BUILDDIR)/html."
56
+
57
+ dirhtml:
58
+ $(SPHINXBUILD) -b dirhtml $(ALLSPHINXOPTS) $(BUILDDIR)/dirhtml
59
+ @echo
60
+ @echo "Build finished. The HTML pages are in $(BUILDDIR)/dirhtml."
61
+
62
+ singlehtml:
63
+ $(SPHINXBUILD) -b singlehtml $(ALLSPHINXOPTS) $(BUILDDIR)/singlehtml
64
+ @echo
65
+ @echo "Build finished. The HTML page is in $(BUILDDIR)/singlehtml."
66
+
67
+ pickle:
68
+ $(SPHINXBUILD) -b pickle $(ALLSPHINXOPTS) $(BUILDDIR)/pickle
69
+ @echo
70
+ @echo "Build finished; now you can process the pickle files."
71
+
72
+ json:
73
+ $(SPHINXBUILD) -b json $(ALLSPHINXOPTS) $(BUILDDIR)/json
74
+ @echo
75
+ @echo "Build finished; now you can process the JSON files."
76
+
77
+ htmlhelp:
78
+ $(SPHINXBUILD) -b htmlhelp $(ALLSPHINXOPTS) $(BUILDDIR)/htmlhelp
79
+ @echo
80
+ @echo "Build finished; now you can run HTML Help Workshop with the" \
81
+ ".hhp project file in $(BUILDDIR)/htmlhelp."
82
+
83
+ qthelp:
84
+ $(SPHINXBUILD) -b qthelp $(ALLSPHINXOPTS) $(BUILDDIR)/qthelp
85
+ @echo
86
+ @echo "Build finished; now you can run "qcollectiongenerator" with the" \
87
+ ".qhcp project file in $(BUILDDIR)/qthelp, like this:"
88
+ @echo "# qcollectiongenerator $(BUILDDIR)/qthelp/orca_step.qhcp"
89
+ @echo "To view the help file:"
90
+ @echo "# assistant -collectionFile $(BUILDDIR)/qthelp/orca_step.qhc"
91
+
92
+ devhelp:
93
+ $(SPHINXBUILD) -b devhelp $(ALLSPHINXOPTS) $(BUILDDIR)/devhelp
94
+ @echo
95
+ @echo "Build finished."
96
+ @echo "To view the help file:"
97
+ @echo "# mkdir -p $$HOME/.local/share/devhelp/orca_step"
98
+ @echo "# ln -s $(BUILDDIR)/devhelp $$HOME/.local/share/devhelp/orca_step"
99
+ @echo "# devhelp"
100
+
101
+ epub:
102
+ $(SPHINXBUILD) -b epub $(ALLSPHINXOPTS) $(BUILDDIR)/epub
103
+ @echo
104
+ @echo "Build finished. The epub file is in $(BUILDDIR)/epub."
105
+
106
+ latex:
107
+ $(SPHINXBUILD) -b latex $(ALLSPHINXOPTS) $(BUILDDIR)/latex
108
+ @echo
109
+ @echo "Build finished; the LaTeX files are in $(BUILDDIR)/latex."
110
+ @echo "Run \`make' in that directory to run these through (pdf)latex" \
111
+ "(use \`make latexpdf' here to do that automatically)."
112
+
113
+ latexpdf:
114
+ $(SPHINXBUILD) -b latex $(ALLSPHINXOPTS) $(BUILDDIR)/latex
115
+ @echo "Running LaTeX files through pdflatex..."
116
+ $(MAKE) -C $(BUILDDIR)/latex all-pdf
117
+ @echo "pdflatex finished; the PDF files are in $(BUILDDIR)/latex."
118
+
119
+ latexpdfja:
120
+ $(SPHINXBUILD) -b latex $(ALLSPHINXOPTS) $(BUILDDIR)/latex
121
+ @echo "Running LaTeX files through platex and dvipdfmx..."
122
+ $(MAKE) -C $(BUILDDIR)/latex all-pdf-ja
123
+ @echo "pdflatex finished; the PDF files are in $(BUILDDIR)/latex."
124
+
125
+ text:
126
+ $(SPHINXBUILD) -b text $(ALLSPHINXOPTS) $(BUILDDIR)/text
127
+ @echo
128
+ @echo "Build finished. The text files are in $(BUILDDIR)/text."
129
+
130
+ man:
131
+ $(SPHINXBUILD) -b man $(ALLSPHINXOPTS) $(BUILDDIR)/man
132
+ @echo
133
+ @echo "Build finished. The manual pages are in $(BUILDDIR)/man."
134
+
135
+ texinfo:
136
+ $(SPHINXBUILD) -b texinfo $(ALLSPHINXOPTS) $(BUILDDIR)/texinfo
137
+ @echo
138
+ @echo "Build finished. The Texinfo files are in $(BUILDDIR)/texinfo."
139
+ @echo "Run \`make' in that directory to run these through makeinfo" \
140
+ "(use \`make info' here to do that automatically)."
141
+
142
+ info:
143
+ $(SPHINXBUILD) -b texinfo $(ALLSPHINXOPTS) $(BUILDDIR)/texinfo
144
+ @echo "Running Texinfo files through makeinfo..."
145
+ make -C $(BUILDDIR)/texinfo info
146
+ @echo "makeinfo finished; the Info files are in $(BUILDDIR)/texinfo."
147
+
148
+ gettext:
149
+ $(SPHINXBUILD) -b gettext $(I18NSPHINXOPTS) $(BUILDDIR)/locale
150
+ @echo
151
+ @echo "Build finished. The message catalogs are in $(BUILDDIR)/locale."
152
+
153
+ changes:
154
+ $(SPHINXBUILD) -b changes $(ALLSPHINXOPTS) $(BUILDDIR)/changes
155
+ @echo
156
+ @echo "The overview file is in $(BUILDDIR)/changes."
157
+
158
+ linkcheck:
159
+ $(SPHINXBUILD) -b linkcheck $(ALLSPHINXOPTS) $(BUILDDIR)/linkcheck
160
+ @echo
161
+ @echo "Link check complete; look for any errors in the above output " \
162
+ "or in $(BUILDDIR)/linkcheck/output.txt."
163
+
164
+ doctest:
165
+ $(SPHINXBUILD) -b doctest $(ALLSPHINXOPTS) $(BUILDDIR)/doctest
166
+ @echo "Testing of doctests in the sources finished, look at the " \
167
+ "results in $(BUILDDIR)/doctest/output.txt."
168
+
169
+ xml:
170
+ $(SPHINXBUILD) -b xml $(ALLSPHINXOPTS) $(BUILDDIR)/xml
171
+ @echo
172
+ @echo "Build finished. The XML files are in $(BUILDDIR)/xml."
173
+
174
+ pseudoxml:
175
+ $(SPHINXBUILD) -b pseudoxml $(ALLSPHINXOPTS) $(BUILDDIR)/pseudoxml
176
+ @echo
177
+ @echo "Build finished. The pseudo-XML files are in $(BUILDDIR)/pseudoxml."
Binary file
@@ -0,0 +1,17 @@
1
+ API Documentation
2
+ =================
3
+
4
+ Contents:
5
+
6
+ .. toctree::
7
+ :maxdepth: 2
8
+
9
+ modules
10
+
11
+
12
+ Indices and tables
13
+ ------------------
14
+
15
+ * :ref:`genindex`
16
+ * :ref:`modindex`
17
+ * :ref:`search`
@@ -0,0 +1 @@
1
+ .. include:: ../AUTHORS.rst