1
+ title : A First Course in Quantitative Economics with Python
2
+ author : Thomas J. Sargent & John Stachurski
3
+ logo : _static/qe-logo.png
4
+ description : This website presents introductory lectures on computational economics, designed and written by Thomas J. Sargent and John Stachurski.
5
+
6
+ parse :
7
+ myst_enable_extensions : # default extensions to enable in the myst parser. See https://myst-parser.readthedocs.io/en/latest/using/syntax-optional.html
8
+ - amsmath
9
+ - colon_fence
10
+ - deflist
11
+ - dollarmath
12
+ - html_admonition
13
+ - html_image
14
+ - linkify
15
+ - replacements
16
+ - smartquotes
17
+ - substitution
18
+ - tasklist
19
+
20
+ only_build_toc_files : true
21
+ execute :
22
+ execute_notebooks : " cache"
23
+ timeout : 600 # 10 minutes
24
+ exclude_patterns :
25
+ - ' _static/*'
26
+
27
+ html :
28
+ baseurl : https://intro.quantecon.org/
29
+
30
+ bibtex_bibfiles :
31
+ - _static/quant-econ.bib
32
+
33
+ latex :
34
+ latex_documents :
35
+ targetname : quantecon-python-intro.tex
36
+
37
+ sphinx :
38
+ extra_extensions : [sphinx_multitoc_numbering, sphinxext.rediraffe, sphinx_exercise, sphinx_togglebutton, sphinx.ext.intersphinx, sphinx_proof, sphinx_tojupyter]
39
+ config :
40
+ # false-positive links
41
+ linkcheck_ignore : ['https://doi.org/https://doi.org/10.2307/1235116', 'https://math.stackexchange.com/*', 'https://stackoverflow.com/*']
42
+ # myst-nb config
43
+ nb_render_image_options :
44
+ width : 80%
45
+ nb_code_prompt_show : " Show {type}"
46
+ # -------------
47
+ html_favicon : _static/lectures-favicon.ico
48
+ html_theme : quantecon_book_theme
49
+ html_static_path : ['_static']
50
+ html_theme_options :
51
+ authors :
52
+ - name : Thomas J. Sargent
53
+ url : http://www.tomsargent.com/
54
+ - name : John Stachurski
55
+ url : https://johnstachurski.net/
56
+ dark_logo : quantecon-logo-transparent.png
57
+ header_organisation_url : https://quantecon.org
58
+ header_organisation : QuantEcon
59
+ repository_url : https://github.com/QuantEcon/lecture-python-intro
60
+ nb_repository_url : https://github.com/QuantEcon/lecture-python-intro.notebooks
61
+ twitter : quantecon
62
+ twitter_logo_url : https://assets.quantecon.org/img/qe-twitter-logo.png
63
+ og_logo_url : https://assets.quantecon.org/img/qe-og-logo.png
64
+ description : This website presents introductory lectures on computational economics, designed and written by Thomas J. Sargent and John Stachurski.
65
+ keywords : Python, QuantEcon, Quantitative Economics, Economics, Sloan, Alfred P. Sloan Foundation, Tom J. Sargent, John Stachurski
66
+ analytics :
67
+ google_analytics_id : G-QDS1YRJNGM
68
+ launch_buttons :
69
+ notebook_interface : classic # The interface interactive links will activate ["classic", "jupyterlab"]
70
+ binderhub_url : https://mybinder.org # The URL of the BinderHub (e.g., https://mybinder.org)
71
+ colab_url : https://colab.research.google.com
72
+ thebe : false # Add a thebe button to pages (requires the repository to run on Binder)
73
+ intersphinx_mapping :
74
+ pyprog :
75
+ - https://python-programming.quantecon.org/
76
+ - null
77
+ intro :
78
+ - https://intro.quantecon.org/
79
+ - null
80
+ dle :
81
+ - https://quantecon.github.io/lecture-dle/
82
+ - null
83
+ dps :
84
+ - https://quantecon.github.io/lecture-dps/
85
+ - null
86
+ eqm :
87
+ - https://quantecon.github.io/lecture-eqm/
88
+ - null
89
+ stats :
90
+ - https://quantecon.github.io/lecture-stats/
91
+ - null
92
+ tools :
93
+ - https://quantecon.github.io/lecture-tools-techniques/
94
+ - null
95
+ dynam :
96
+ - https://quantecon.github.io/lecture-dynamics/
97
+ - null
98
+ mathjax3_config :
99
+ tex :
100
+ macros :
101
+ " argmax" : "arg\\,max"
102
+ " argmin" : "arg\\,min"
103
+ mathjax_path : https://cdn.jsdelivr.net/npm/mathjax@3/es5/tex-mml-chtml.js
104
+ rediraffe_redirects :
105
+ index_toc.md : intro.md
106
+ tojupyter_static_file_path : ["_static"]
107
+ tojupyter_target_html : true
108
+ tojupyter_urlpath : " https://intro.quantecon.org/" # TODO: update
109
+ tojupyter_image_urlpath : " https://intro.quantecon.org/_static/" # TODO: update
110
+ tojupyter_lang_synonyms : ["ipython", "ipython3", "python"]
111
+ tojupyter_kernels :
112
+ python3 :
113
+ kernelspec :
114
+ display_name : " Python"
115
+ language : python3
116
+ name : python3
117
+ file_extension : " .py"
118
+ tojupyter_images_markdown : true
0 commit comments