Skip to content

Commit

Permalink
some more stuff
Browse files Browse the repository at this point in the history
  • Loading branch information
DevER-M committed Oct 23, 2024
1 parent 52f3575 commit 2931aa5
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 2 deletions.
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,5 @@ a.py
__pycache__
*/__pycache__
*.mp4
*.mov
*.mov
.tve
1 change: 1 addition & 0 deletions mus/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
from .music import MusicPlayer
10 changes: 10 additions & 0 deletions mus/__main__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
"""Entry point"""

import logging
from mus.music import MusicPlayer


logging.getLogger().setLevel(logging.INFO)

app = MusicPlayer()
app.mainloop()
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ version = "1.0.0"
description="An open-source music player with simple UI"
readme = "README.md"
requires-python = ">=3.8"
license = {file = "LICENSE.txt"}
license = {file = "LICENSE"}
keywords = ["tkinter","youtube-music-player","spotdl","online-music-player","customtkinter","youtube-dl"]
authors = [
{name = "Mithun", email="[email protected]"}
Expand Down

0 comments on commit 2931aa5

Please sign in to comment.