Skip to content

Commit f9a71c0

Browse files
Create conf.py
1 parent 0c0f6bd commit f9a71c0

File tree

1 file changed

+19
-0
lines changed

1 file changed

+19
-0
lines changed

doc/source/conf.py

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
import os
2+
import sys
3+
sys.path.insert(0, os.path.abspath('../..'))
4+
5+
project = 'Implicit Reparametrization Trick'
6+
author = 'Matvei Kreinin, Maria Nikitina, Petr Babkin, Irina Zaboryanskaya'
7+
release = '0.1'
8+
9+
extensions = [
10+
'sphinx.ext.autodoc',
11+
'sphinx.ext.napoleon',
12+
'sphinx.ext.viewcode',
13+
]
14+
15+
templates_path = ['_templates']
16+
exclude_patterns = []
17+
18+
html_theme = 'sphinx_rtd_theme'
19+
html_static_path = ['_static']

0 commit comments

Comments
 (0)