mirror of
https://github.com/Pardus-LiderAhenk/ahenk
synced 2024-11-15 00:52:16 +03:00
16 lines
470 B
Python
16 lines
470 B
Python
#!/usr/bin/python3
|
|
# -*- coding: utf-8 -*-
|
|
|
|
|
|
def info():
|
|
inf = dict()
|
|
inf['name'] = 'package-manager'
|
|
inf['version'] = '1.0.0'
|
|
inf['support'] = 'debian'
|
|
inf['description'] = 'General repository and package operations (like repo/package installing/uninstalling, searching repo/package...etc)'
|
|
inf['task'] = True
|
|
inf['user_oriented'] = False
|
|
inf['machine_oriented'] = False
|
|
inf['developer'] = 'cemre.alpsoy@agem.com.tr'
|
|
|
|
return inf
|