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 = ""