mirror of
https://github.com/Pardus-LiderAhenk/ahenk
synced 2024-11-16 01:22:15 +03:00
17 lines
331 B
Python
17 lines
331 B
Python
|
#!/usr/bin/python3
|
||
|
# -*- coding: utf-8 -*-
|
||
|
|
||
|
|
||
|
def info():
|
||
|
inf = dict()
|
||
|
inf['name'] = 'file-management'
|
||
|
inf['version'] = '1.0.0'
|
||
|
inf['support'] = 'debian'
|
||
|
inf['description'] = ''
|
||
|
inf['task'] = True
|
||
|
inf['user_oriented'] = False
|
||
|
inf['machine_oriented'] = False
|
||
|
inf['developer'] = ''
|
||
|
|
||
|
return inf
|