mirror of
https://github.com/Pardus-LiderAhenk/ahenk
synced 2024-11-10 10:02:36 +03:00
19 lines
520 B
Python
19 lines
520 B
Python
|
#!/usr/bin/env python3
|
||
|
# -*- coding: utf-8 -*-
|
||
|
# Author: >
|
||
|
# Author: Volkan Şahin <volkansah.in> <bm.volkansahin@gmail.com>
|
||
|
|
||
|
|
||
|
def info():
|
||
|
inf = dict()
|
||
|
inf['name'] = 'browser'
|
||
|
inf['version'] = '1.0.0'
|
||
|
inf['support'] = 'debian'
|
||
|
inf['description'] = 'Browser plugin provides to managing user or global firefox profile like setting homepage etc.'
|
||
|
inf['task'] = True
|
||
|
inf['user_oriented'] = True
|
||
|
inf['machine_oriented'] = True
|
||
|
inf['developer'] = 'bm.volkansahin@gmail.com'
|
||
|
|
||
|
return inf
|