commit 3313fbddae36e3990c4c66884bc9e3f83c772b58 Author: Rokas Puzonas Date: Fri Dec 17 18:46:51 2021 +0200 feat: initial commit diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..4ee96a0 --- /dev/null +++ b/.gitignore @@ -0,0 +1,3 @@ +venv + +__pycache__ diff --git a/README.md b/README.md new file mode 100644 index 0000000..0deaab3 --- /dev/null +++ b/README.md @@ -0,0 +1 @@ +# Moodle assigment upload diff --git a/main.py b/main.py new file mode 100755 index 0000000..aced72c --- /dev/null +++ b/main.py @@ -0,0 +1,8 @@ +#!/usr/bin/env python + +def main(): + pass + +if __name__ == "__main__": + main() + diff --git a/requirements.txt b/requirements.txt new file mode 100644 index 0000000..6180328 --- /dev/null +++ b/requirements.txt @@ -0,0 +1 @@ +click==8.0.3