mirror of
https://github.com/Pardus-LiderAhenk/ahenk
synced 2024-11-10 10:02:36 +03:00
17 lines
408 B
Python
17 lines
408 B
Python
|
#!/usr/bin/python3
|
||
|
# -*- coding: utf-8 -*-
|
||
|
|
||
|
|
||
|
def info():
|
||
|
inf = dict()
|
||
|
inf['name'] = 'usb'
|
||
|
inf['version'] = '1.0.0'
|
||
|
inf['support'] = 'debian'
|
||
|
inf['description'] = 'USB plugin provides to managing usb devices like printer, mouse etc.'
|
||
|
inf['task'] = True
|
||
|
inf['user_oriented'] = False
|
||
|
inf['machine_oriented'] = True
|
||
|
inf['developer'] = 'mine.dogan@agem.com.tr'
|
||
|
|
||
|
return inf
|