From e1e2445194e87adac8253a984e8012c31417653b Mon Sep 17 00:00:00 2001 From: JoYo <> Date: Sun, 5 Dec 2021 14:29:43 -0500 Subject: [PATCH] init --- Dockerfile | 0 README.md | 3 --- README.mdown | 9 +++++++++ banana.service | 9 +++++++++ banana.timer | 9 +++++++++ banana/__init__.py | 0 docker-compose.yaml | 0 makefile | 0 pyproject.toml | 19 +++++++++++++++++++ 9 files changed, 46 insertions(+), 3 deletions(-) create mode 100644 Dockerfile delete mode 100644 README.md create mode 100644 README.mdown create mode 100644 banana.service create mode 100644 banana.timer create mode 100644 banana/__init__.py create mode 100644 docker-compose.yaml create mode 100644 makefile create mode 100644 pyproject.toml diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..e69de29 diff --git a/README.md b/README.md deleted file mode 100644 index 403e3e4..0000000 --- a/README.md +++ /dev/null @@ -1,3 +0,0 @@ -# banana - -Elder Scrolls Online Commad Line Addon Manager \ No newline at end of file diff --git a/README.mdown b/README.mdown new file mode 100644 index 0000000..cbcc6a9 --- /dev/null +++ b/README.mdown @@ -0,0 +1,9 @@ +# Elder Scrolls Online Commadline Addon Manager + +Elder Scrolls Online addon manager and a Tamriel Trade Centre price table updater + +# Dependencies + +# Installation + +# Usage diff --git a/banana.service b/banana.service new file mode 100644 index 0000000..84e4fa8 --- /dev/null +++ b/banana.service @@ -0,0 +1,9 @@ +[Unit] +Description=run eso-banana addon management + +[Service] +Type=simple +ExecStart=banana-script + +[Install] +WantedBy=default.target diff --git a/banana.timer b/banana.timer new file mode 100644 index 0000000..c3fab5c --- /dev/null +++ b/banana.timer @@ -0,0 +1,9 @@ +[Unit] +Description=Run eso-banana addon management once a day. + +[Timer] +OnUnitActiveSec=12h +Unit=banana.service + +[Install] +WantedBy=multi-user.target diff --git a/banana/__init__.py b/banana/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/docker-compose.yaml b/docker-compose.yaml new file mode 100644 index 0000000..e69de29 diff --git a/makefile b/makefile new file mode 100644 index 0000000..e69de29 diff --git a/pyproject.toml b/pyproject.toml new file mode 100644 index 0000000..6a2d177 --- /dev/null +++ b/pyproject.toml @@ -0,0 +1,19 @@ +[build-system] +requires = ["poetry"] +build-backend = "poetry.masonry.api" + +[tool.poetry] +authors = ["py "] +description = "" +license = "MIT" +name = "banana" +version = "0.0.1" + +[[tool.poetry.packages]] +include = "banana" + +[tool.poetry.scripts] +banana-script = "banana:scripts.periodical_script" + +[tool.poetry.dependencies] +requests = ""