Skip to content
Snippets Groups Projects

Fixed setup.py and added manifest to include migrations and traslation files in the package.

Merged Neda Moeini requested to merge fix-gso=package-setup into develop
4 files
+ 9
10
Compare changes
  • Side-by-side
  • Inline
Files
4
+ 2
9
@@ -4,10 +4,10 @@ copyright = '2023, GÉANT Vereniging'
author = 'GÉANT Orchestration and Automation Team'
# -- General configuration ---------------------------------------------------
extensions = ['sphinx_rtd_theme', 'myst_parser', 'autodoc2']
extensions = ['sphinx_rtd_theme', 'myst_parser', 'sphinx.ext.autodoc']
templates_path = ['templates']
exclude_patterns = ['build', 'Thumbs.db', '.DS_Store', 'venv', 'vale']
exclude_patterns = ['build', 'Thumbs.db', '.DS_Store', 'venv', 'vale', '__init__.py']
source_suffix = {
'.md': 'markdown'
}
@@ -16,13 +16,6 @@ source_suffix = {
myst_enable_extensions = ['attrs_block', 'deflist', 'replacements', 'smartquotes', 'strikethrough', 'fieldlist']
suppress_warnings = ['myst.strikethrough']
# -- Options for autodoc -----------------------------------------------------
autodoc2_packages = [
"../../gso"
]
autodoc2_render_plugin = "myst"
autodoc2_hidden_objects = ["undoc", "inherited"]
autodoc2_index_template = None
# -- Options for HTML output -------------------------------------------------
html_theme = 'sphinx_rtd_theme'
Loading