Skip to content

Commit

Permalink
Add sphinx metadata (#108)
Browse files Browse the repository at this point in the history
Fixes #91
  • Loading branch information
stsewd committed Apr 4, 2022
1 parent 4a5e229 commit c95e314
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions sphinx_search/extension.py
@@ -1,5 +1,6 @@
import os

from sphinx_search import __version__
from sphinx.errors import ExtensionError
from sphinx.util.fileutil import copy_asset

Expand Down Expand Up @@ -45,3 +46,9 @@ def setup(app):

app.connect('builder-inited', inject_static_files)
app.connect('build-finished', copy_asset_files)

return {
'version': __version__,
'parallel_read_safe': True,
'parallel_write_safe': True,
}

0 comments on commit c95e314

Please sign in to comment.