mirror of
https://github.com/Pardus-LiderAhenk/ahenk
synced 2024-11-14 19:02:27 +03:00
16 lines
347 B
Python
16 lines
347 B
Python
#!/usr/bin/env python3
|
|
# -*- coding: utf-8 -*-
|
|
|
|
|
|
def info():
|
|
inf = dict()
|
|
inf['name'] = 'conky'
|
|
inf['version'] = '1.0.0'
|
|
inf['support'] = 'debian'
|
|
inf['description'] = ''
|
|
inf['task'] = True
|
|
inf['user_oriented'] = True
|
|
inf['machine_oriented'] = True
|
|
inf['developer'] = 'bm.volkansahin@gmail.com'
|
|
|
|
return inf
|