Fix setup.py to work properly

This commit is contained in:
coderkun 2017-01-15 19:47:21 +01:00
commit 88ddc7ce4a
4 changed files with 45 additions and 13 deletions

21
mcg/mcg.py Executable file
View file

@ -0,0 +1,21 @@
#!/usr/bin/env python3
"""MPDCoverGrid is a client for the Music Player Daemon, focused on albums instead of single tracks."""
import sys
from mcg.application import Application
def main():
# Start application
app = Application()
exit_status = app.run(sys.argv)
sys.exit(exit_status)
if __name__ == "__main__":
main()