Fix setup.py to work properly
This commit is contained in:
parent
1960cb2517
commit
88ddc7ce4a
4 changed files with 45 additions and 13 deletions
21
mcg/mcg.py
Executable file
21
mcg/mcg.py
Executable 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()
|
||||
Loading…
Add table
Add a link
Reference in a new issue