-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathinstall.py
27 lines (23 loc) · 833 Bytes
/
install.py
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
from setup import ExtensionInstaller
def loader():
return APRSInstaller()
class APRSInstaller(ExtensionInstaller):
def __init__(self):
super(APRSInstaller, self).__init__(
version='0.1',
name='aprs',
description='Write archive data in APRS positionless format.',
author='Ludovico Cavedon (K6LUD)',
author_email='[email protected]',
process_services='user.aprs.APRS',
config={
'APRS': {
'output_filename': '/dev/shm/aprs.pkt',
'include_position': 0,
'symbol_table': '/',
'symbol_code': '_',
'comment': '',
},
},
files=[('bin/user', ['bin/user/aprs.py'])]
)