init
parent
4965b71d51
commit
e1e2445194
|
@ -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
|
|
@ -0,0 +1,9 @@
|
||||||
|
[Unit]
|
||||||
|
Description=run eso-banana addon management
|
||||||
|
|
||||||
|
[Service]
|
||||||
|
Type=simple
|
||||||
|
ExecStart=banana-script
|
||||||
|
|
||||||
|
[Install]
|
||||||
|
WantedBy=default.target
|
|
@ -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,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 = ""
|
Loading…
Reference in New Issue