mirror of
https://github.com/tcsenpai/Zundler.git
synced 2025-06-07 03:55:26 +00:00
13 lines
242 B
Python
13 lines
242 B
Python
from sphinx.application import Sphinx
|
|
|
|
project = 'copy-button'
|
|
copyright = '2024, Adrian Vollmer'
|
|
author = 'Adrian Vollmer'
|
|
version = '0.0.1'
|
|
|
|
exclude_patterns = ['_build', 'Thumbs.db', '.DS_Store']
|
|
|
|
extensions = [
|
|
"sphinx_copybutton",
|
|
]
|