diff --git a/docs/conf.py b/docs/conf.py index 05543cc..2bba2f9 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -16,6 +16,8 @@ import sys sys.path.insert(0, os.path.abspath('../')) +from pykube import __version__ # noqa + # -- Project information ----------------------------------------------------- @@ -24,9 +26,9 @@ author = 'Henning Jacobs' # The short X.Y version -version = '0.1' +version = __version__ # The full version, including alpha/beta/rc tags -release = '0.1' +release = __version__ # -- General configuration --------------------------------------------------- diff --git a/docs/index.rst b/docs/index.rst index 79be132..3ef66fe 100644 --- a/docs/index.rst +++ b/docs/index.rst @@ -45,6 +45,7 @@ There is not much documentation yet, but you can check out the `README on github howtos/index.rst readme changelog + users diff --git a/docs/users.rst b/docs/users.rst new file mode 100644 index 0000000..5aad40d --- /dev/null +++ b/docs/users.rst @@ -0,0 +1,10 @@ +Users +===== + +The following projects use Pykube: + +* `kube-downscaler `_ +* `kube-janitor `_ +* `kube-resource-report `_ + +Do you know of a project using Pykube and it's not listed here? Please `open a PR `_ to add it to the list.