Skip to content

Commit 20dd0ca

Browse files
committed
Add gallery constructor prototype
1 parent de8d2ab commit 20dd0ca

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

47 files changed

+156215
-1
lines changed

.gitignore

+3
Original file line numberDiff line numberDiff line change
@@ -127,3 +127,6 @@ dmypy.json
127127

128128
# Pyre type checker
129129
.pyre/
130+
.vscode/
131+
*.DS_Store
132+
_build/

.pre-commit-config.yaml

+49
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,49 @@
1+
repos:
2+
- repo: https://github.com/pre-commit/pre-commit-hooks
3+
rev: v3.3.0
4+
hooks:
5+
- id: trailing-whitespace
6+
- id: end-of-file-fixer
7+
- id: check-docstring-first
8+
- id: check-json
9+
- id: check-yaml
10+
- id: double-quote-string-fixer
11+
12+
- repo: https://github.com/ambv/black
13+
rev: 20.8b1
14+
hooks:
15+
- id: black
16+
17+
- repo: https://github.com/keewis/blackdoc
18+
rev: v0.3
19+
hooks:
20+
- id: blackdoc
21+
22+
- repo: https://gitlab.com/pycqa/flake8
23+
rev: 3.8.4
24+
hooks:
25+
- id: flake8
26+
27+
- repo: https://github.com/asottile/seed-isort-config
28+
rev: v2.2.0
29+
hooks:
30+
- id: seed-isort-config
31+
- repo: https://github.com/pre-commit/mirrors-isort
32+
rev: v5.6.4
33+
hooks:
34+
- id: isort
35+
36+
- repo: https://github.com/prettier/pre-commit
37+
rev: 57f39166b5a5a504d6808b87ab98d41ebf095b46
38+
hooks:
39+
- id: prettier
40+
41+
- repo: https://github.com/nbQA-dev/nbQA
42+
rev: 0.5.1
43+
hooks:
44+
- id: nbqa-black
45+
additional_dependencies: [black==20.8b1]
46+
- id: nbqa-pyupgrade
47+
additional_dependencies: [pyupgrade==2.7.3]
48+
# - id: nbqa-isort
49+
# additional_dependencies: [isort==5.6.4]

.prettierrc.toml

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
tabWidth = 2
2+
semi = false
3+
singleQuote = true

Makefile

+23
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
# Minimal makefile for Sphinx documentation
2+
#
3+
4+
# You can set these variables from the command line, and also
5+
# from the environment for the first two.
6+
SPHINXOPTS ?=
7+
SPHINXBUILD ?= sphinx-build
8+
SOURCEDIR = .
9+
BUILDDIR = _build
10+
11+
# Put it first so that "make" without argument is like "make help".
12+
help:
13+
@$(SPHINXBUILD) -M help "$(SOURCEDIR)" "$(BUILDDIR)" $(SPHINXOPTS) $(O)
14+
15+
live:
16+
sphinx-autobuild --ignore _build -b dirhtml . _build/dirhtml/
17+
18+
.PHONY: help Makefile
19+
20+
# Catch-all target: route all unknown targets to Sphinx using the new
21+
# "make mode" option. $(O) is meant as a shortcut for $(SPHINXOPTS).
22+
%: Makefile
23+
@$(SPHINXBUILD) -M $@ "$(SOURCEDIR)" "$(BUILDDIR)" $(SPHINXOPTS) $(O)

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
# pythia-portal
1+
# Project Pythia

_static/ebp-logo.png

219 KB
Loading

_static/footer-banner.jpg

73 KB
Loading

_static/placeholder.png

3.58 KB
Loading

_static/sphinx-logo.png

7.74 KB
Loading

ci/environment.yml

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
name: pythia
2+
channels:
3+
- conda-forge
4+
dependencies:
5+
- myst-nb
6+
- sphinx-panels
7+
- pydata-sphinx-theme
8+
- jupyterlab
9+
- sphinx-autobuild
10+
- matplotlib
11+
- sphinx-book-theme

conf.py

+74
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,74 @@
1+
#!/usr/bin/env python3
2+
# -*- coding: utf-8 -*-
3+
4+
import datetime
5+
import os
6+
import sys
7+
8+
sys.path.insert(0, os.path.abspath(os.path.join('sphinxext')))
9+
project = 'Pythia Portal'
10+
copyright = f'2020-{datetime.datetime.now().year}'
11+
author = 'Project Pythia Developers & Contributors'
12+
html_last_updated_fmt = '%b %d, %Y'
13+
14+
15+
extensions = ['myst_nb', 'sphinx_panels']
16+
17+
18+
# Add any paths that contain templates here, relative to this directory.
19+
templates_path = ['_templates']
20+
21+
# List of patterns, relative to source directory, that match files and
22+
# directories to ignore when looking for source files.
23+
# This pattern also affects html_static_path and html_extra_path.
24+
exclude_patterns = [
25+
'_build',
26+
'Thumbs.db',
27+
'.DS_Store',
28+
'*import_posts*',
29+
'**/pandoc_ipynb/inputs/*',
30+
'**.ipynb_checkpoints',
31+
]
32+
33+
34+
# -- Options for HTML output -------------------------------------------------
35+
36+
# The theme to use for HTML and HTML Help pages. See the documentation for
37+
# a list of builtin themes.
38+
39+
html_theme = 'sphinx_book_theme'
40+
html_theme_options = {
41+
'path_to_docs': './',
42+
'search_bar_text': 'Search this site...',
43+
'repository_url': 'https://github.com/NCAR/pythia-portal',
44+
# "repository_branch": "gh-pages", # For testing
45+
'launch_buttons': {
46+
'binderhub_url': 'https://mybinder.org',
47+
# "jupyterhub_url": "https://datahub.berkeley.edu", # For testing
48+
'colab_url': 'https://colab.research.google.com/',
49+
'notebook_interface': 'jupyterlab',
50+
'thebe': True,
51+
},
52+
'use_edit_page_button': True,
53+
'use_issues_button': True,
54+
'use_repository_button': True,
55+
'use_download_button': True,
56+
}
57+
copybutton_selector = 'div:not(.output) > div.highlight pre'
58+
59+
# html_favicon = '_static/favicon.ico'
60+
61+
# Add any paths that contain custom static files (such as style sheets) here,
62+
# relative to this directory. They are copied after the builtin static files,
63+
# so a file named "default.css" will overwrite the builtin "default.css".
64+
html_static_path = ['_static']
65+
# html_extra_path = ['feed.xml']
66+
67+
68+
# Panels config
69+
panels_add_bootstrap_css = False
70+
71+
# MyST config
72+
myst_admonition_enable = True
73+
myst_deflist_enable = True
74+
jupyter_execute_notebooks = 'off'

0 commit comments

Comments
 (0)