Skip to content

Commit

Permalink
docs: fixed to find pyfpga.project
Browse files Browse the repository at this point in the history
  • Loading branch information
rodrigomelo9 committed May 26, 2024
1 parent c2957c0 commit 3d29a99
Showing 1 changed file with 5 additions and 7 deletions.
12 changes: 5 additions & 7 deletions docs/conf.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# -*- coding: utf-8 -*-

import sys, re
from pathlib import Path

sys.path.insert(0, str(Path.cwd().resolve().parent))

# -- Project information -----------------------------------------------------

project = 'PyFPGA'
Expand Down Expand Up @@ -30,12 +35,5 @@

# -- Options for HTML output -------------------------------------------------

# The theme to use for HTML and HTML Help pages. See the documentation for
# a list of builtin themes.
#
html_theme = 'sphinx_rtd_theme'

# Add any paths that contain custom static files (such as style sheets) here,
# relative to this directory. They are copied after the builtin static files,
# so a file named "default.css" will overwrite the builtin "default.css".
html_static_path = ['_static']

0 comments on commit 3d29a99

Please sign in to comment.