diff --git a/.gitignore b/.gitignore index d9005f2..889212d 100644 --- a/.gitignore +++ b/.gitignore @@ -150,3 +150,6 @@ cython_debug/ # and can be added to the global gitignore or merged into this file. For a more nuclear # option (not recommended) you can uncomment the following to ignore the entire idea folder. #.idea/ + +charts/**/charts/* +Chart.lock \ No newline at end of file diff --git a/LICENSE b/LICENSE new file mode 100644 index 0000000..4caa93e --- /dev/null +++ b/LICENSE @@ -0,0 +1,7 @@ +Copyright 2021 Andrew Williams + +Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. diff --git a/README.md b/README.md index 32fdd09..30f5adb 100644 --- a/README.md +++ b/README.md @@ -1,3 +1,5 @@ # Ohayo Dash -Ohayo Dash is a Kubernetes driven start page and dashboard. All configuration is done by standard Kubernetes objects and ConfigMaps. \ No newline at end of file +Ohayo Dash is a Kubernetes driven start page and dashboard. All configuration is done by standard Kubernetes objects and ConfigMaps. + +This is inspired by [Hajimari](https://github.com/toboshii/hajimari) and [SUI](https://github.com/jeroenpardon/sui) projects. \ No newline at end of file diff --git a/pyproject.toml b/pyproject.toml new file mode 100644 index 0000000..7dc8d8a --- /dev/null +++ b/pyproject.toml @@ -0,0 +1,4 @@ + +[build-system] +requires = ["setuptools", "wheel"] +build-backend = "setuptools.build_meta" \ No newline at end of file diff --git a/requirements-dev.txt b/requirements-dev.txt new file mode 100644 index 0000000..c44182d --- /dev/null +++ b/requirements-dev.txt @@ -0,0 +1 @@ +wheel \ No newline at end of file diff --git a/setup.cfg b/setup.cfg new file mode 100644 index 0000000..51a13d8 --- /dev/null +++ b/setup.cfg @@ -0,0 +1,30 @@ +[metadata] +name = ohayodash +version = 0.0.2 +description = A Kubernetes driven start page and dashboard. All configuration is done by standard Kubernetes objects and ConfigMaps. +long_description = file: README.md, LICENSE +license = MIT +license_file = LICENSE +classifiers = + Framework :: Flask + License :: OSI Approved :: MIT License + Programming Language :: Python :: 3 + Programming Language :: Python :: 3.9 + +[options] +zip_safe = False +packages = ohayodash +install_requires = + flask + kubernetes + pyyaml + gunicorn + +[flake8] +format = wemake +ignore = E501 +max-line-length = 120 +exclude = setup.py + +[darglint] +docstring_style=sphinx diff --git a/setup.py b/setup.py new file mode 100644 index 0000000..fc1f76c --- /dev/null +++ b/setup.py @@ -0,0 +1,3 @@ +from setuptools import setup + +setup() \ No newline at end of file