#!/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()

