mirror of
https://github.com/Pardus-LiderAhenk/ahenk
synced 2024-11-10 12:22:18 +03:00
17 lines
509 B
Python
17 lines
509 B
Python
#!/usr/bin/env python3
|
|
# -*- coding: utf-8 -*-
|
|
# Author: Tuncay ÇOLAK <tuncay.colak@tubitak.gov.tr>
|
|
|
|
|
|
def info():
|
|
inf = dict()
|
|
inf['name'] = 'remote-access'
|
|
inf['version'] = '1.0.0'
|
|
inf['support'] = 'debian'
|
|
inf['description'] = 'Remote Access provides controlling remote Ahenk machine simultaneously. It uses VNC technology.'
|
|
inf['task'] = True
|
|
inf['user_oriented'] = False
|
|
inf['machine_oriented'] = False
|
|
inf['developer'] = 'tuncay.colak@tubitak.gov.tr'
|
|
|
|
return inf
|