mirror of
https://github.com/Pardus-LiderAhenk/ahenk
synced 2024-11-14 07:22:18 +03:00
17 lines
426 B
Python
17 lines
426 B
Python
#!/usr/bin/env python3
|
|
# -*- coding: utf-8 -*-
|
|
# Author: Ebru Arslan <16ebruarslan@gmail.com>
|
|
|
|
|
|
def info():
|
|
inf = dict()
|
|
inf['name'] = 'browser-chrome'
|
|
inf['version'] = '1.0.0'
|
|
inf['support'] = 'debian'
|
|
inf['description'] = 'Browser chrome profile '
|
|
inf['task'] = True
|
|
inf['user_oriented'] = True
|
|
inf['machine_oriented'] = True
|
|
inf['developer'] = '16ebruarslan@gmail.com'
|
|
|
|
return inf
|