Skip to content

Commit

Permalink
Update
Browse files Browse the repository at this point in the history
  • Loading branch information
5yutan5 committed Dec 22, 2021
1 parent d960244 commit 5a43742
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 1 deletion.
9 changes: 9 additions & 0 deletions docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,10 @@

import os
import sys
import time
from datetime import datetime

import qdarktheme

# If extensions (or modules to document with autodoc) are in another directory,
# add these directories to sys.path here. If the directory is relative to the
Expand All @@ -22,6 +26,11 @@
copyright = "2021, Yunosuke Ohsugi"
author = "Yunosuke Ohsugi"

now = datetime.utcfromtimestamp(int(os.environ.get("SOURCE_DATE_EPOCH", time.time())))

version = qdarktheme.__version__
release = version

# -- General configuration ---------------------------------------------------

# Add any Sphinx extension module names here, as strings. They can be
Expand Down
5 changes: 4 additions & 1 deletion qdarktheme/__init__.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
"""PyQtDarkTheme - A flat dark theme for PySide and PyQt.
See https://github.com/5yutan5/PyQtDarkTheme.
- Repository: https://github.com/5yutan5/PyQtDarkTheme
- Documentation: https://pyqtdarktheme.readthedocs.io
"""
from qdarktheme.base import THEMES, load_palette, load_stylesheet

__version__ = "0.1.9"

0 comments on commit 5a43742

Please sign in to comment.