#!/usr/bin/python
# -*- coding: utf-8 -*-

''' 
     _       _         
 ___| |_ __ | | ____ _ 
/ __| | '_ \| |/ / _` |
\__ \ | |_) |   < (_| |
|___/_| .__/|_|\_\__, |
      |_|        |___/ 

Slpkg is a terminal tool in order to easy use
Slackware packages.It's a quick and easy way 
to manage your packages in slackware to a command.
'''

from slpkg import main

if __name__ == "__main__":
    main()

