We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7c0ae79 commit 4bb1594Copy full SHA for 4bb1594
setup.py
@@ -1,5 +1,7 @@
1
from setuptools import setup, find_packages
2
3
+__version__ = "1.0.1"
4
+
5
6
def readme():
7
with open("README.md") as f:
@@ -21,7 +23,7 @@ def import_dev_requirements():
21
23
# https://pypi.org/project/mkdocs-auto-refresh-build-pages
22
24
setup(
25
name="mkdocs-auto-refresh-build-pages",
- version="1.0.0",
26
+ version=__version__,
27
description="MkDocs plugin that automatically refreshes the build pages when the page has been rebuilt.",
28
long_description=readme(),
29
long_description_content_type="text/markdown",
0 commit comments