diff --git a/.gitattributes b/.gitattributes index c69d729..c1ebc96 100644 --- a/.gitattributes +++ b/.gitattributes @@ -5,6 +5,7 @@ *.sh text diff=sh eol=lf *.py text diff=python eol=lf + *.ipynb text eol=lf *.toml text eol=lf diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 0000000..fbb3706 --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,10 @@ +# To get started with Dependabot version updates, you'll need to specify which +# package ecosystems to update and where the package manifests are located. +# Please see the documentation for all configuration options: +# https://docs.github.com/github/administering-a-repository/configuration-options-for-dependency-updates +version: 2 +updates: + - package-ecosystem: "pip" + directory: "/" + schedule: + interval: "daily" \ No newline at end of file diff --git a/docs/Readme.md b/docs/Readme.md index 32ca2cd..1310d22 100644 --- a/docs/Readme.md +++ b/docs/Readme.md @@ -1,2 +1,7 @@ # Documentation for the Hugin and Munin framework -## \ No newline at end of file +## + + + +## + diff --git a/src/HM/main.py b/src/HM/main.py deleted file mode 100644 index 38b0ccd..0000000 --- a/src/HM/main.py +++ /dev/null @@ -1,19 +0,0 @@ -# Used to testing the framework -## TODO: Delete when releasing -from HM.automation.singleton \ - import \ - get_automation_framework, \ - delete_automation_framework - - -def main(): - automation = get_automation_framework() - - automation.setup() - automation.execute() - - delete_automation_framework() - - -if __name__ == '__main__': - main() diff --git a/src/__init__.py b/src/__init__.py deleted file mode 100644 index e69de29..0000000