master
JoYo 2021-12-05 14:29:43 -05:00
parent 4965b71d51
commit e1e2445194
9 changed files with 46 additions and 3 deletions

0
Dockerfile Normal file
View File

View File

@ -1,3 +0,0 @@
# banana
Elder Scrolls Online Commad Line Addon Manager

9
README.mdown Normal file
View File

@ -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

9
banana.service Normal file
View File

@ -0,0 +1,9 @@
[Unit]
Description=run eso-banana addon management
[Service]
Type=simple
ExecStart=banana-script
[Install]
WantedBy=default.target

9
banana.timer Normal file
View File

@ -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

0
banana/__init__.py Normal file
View File

0
docker-compose.yaml Normal file
View File

0
makefile Normal file
View File

19
pyproject.toml Normal file
View File

@ -0,0 +1,19 @@
[build-system]
requires = ["poetry"]
build-backend = "poetry.masonry.api"
[tool.poetry]
authors = ["py <py@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 = ""