added header informations and license

This commit is contained in:
coderkun 2013-03-02 03:18:11 +01:00
commit 4c987d2986
3 changed files with 29 additions and 6 deletions

15
LICENSE Normal file
View file

@ -0,0 +1,15 @@
MPDCoverGrid is a client for the Music Player Daemon, focused on albums instead of single tracks.
Copyright ® 2013 coderkun <olli@coderkun.de>
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.

10
mcg.py
View file

@ -1,9 +1,13 @@
#!/usr/bin/python #!/usr/bin/env python
# -*- coding: utf-8 -*- # -*- coding: utf-8 -*-
# Author: coderkun <olli@coderkun.de> """MPDCoverGrid is a client for the Music Player Daemon, focused on albums instead of single tracks."""
__author__ = "coderkun"
__email__ = "<olli@coderkun.de>"
__license__ = "GPL"
__version__ = "0.2"
__status__ = "Development"
import configparser import configparser

View file

@ -1,9 +1,13 @@
#!/usr/bin/python #!/usr/bin/env python
# -*- coding: utf-8 -*- # -*- coding: utf-8 -*-
# Author: coderkun <olli@coderkun.de> """MPDCoverGrid (GTK version) is a client for the Music Player Daemon, focused on albums instead of single tracks."""
__author__ = "coderkun"
__email__ = "<olli@coderkun.de>"
__license__ = "GPL"
__version__ = "0.2"
__status__ = "Development"
import os import os