-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathinstall.py
More file actions
29 lines (26 loc) · 980 Bytes
/
Copy pathinstall.py
File metadata and controls
29 lines (26 loc) · 980 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
# Copyright 2022 Bram Oosterlynck
from setup import ExtensionInstaller
def loader():
return ConsoleInstaller()
class ConsoleInstaller(ExtensionInstaller):
def __init__(self):
super(ConsoleInstaller, self).__init__(
version="0.3",
name='console',
description='A console-friendly layout.',
author="Bram Oosterlynck",
author_email="bram.oosterlynck@gmail.com",
config={
'StdReport': {
'console': {
'skin':'console',
'HTML_ROOT':'console'}}},
files=[('skins/console',
['skins/console/current.tmpl',
'skins/console/week.tmpl',
'skins/console/month.tmpl',
'skins/console/year.tmpl',
'skins/console/about.tmpl',
'skins/console/skin.conf'])
]
)