Skip to content

Commit

Permalink
Switch to furo
Browse files Browse the repository at this point in the history
  • Loading branch information
hynek committed Oct 19, 2020
1 parent 0bd960a commit f1e91ed
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@

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

html_theme = "sphinx_rtd_theme"
html_theme = "furo"


# Theme options are theme-specific and customize the look and feel of a theme
Expand Down
4 changes: 3 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,14 +42,16 @@
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
"Topic :: Software Development :: Libraries :: Python Modules",
]
INSTALL_REQUIRES = ["attrs>=17.4.0", "configparser; python_version<'3.0'"]
EXTRAS_REQUIRE = {
"tests": ["pytest", "coverage[toml]"],
"docs": ["sphinx", "sphinx_rtd_theme"],
"docs": ["sphinx", "furo"],
}
EXTRAS_REQUIRE["dev"] = (
EXTRAS_REQUIRE["tests"] + EXTRAS_REQUIRE["docs"] + ["pre-commit"]
Expand Down

0 comments on commit f1e91ed

Please sign in to comment.