Skip to content

Commit

Permalink
Made music dependencies optional.
Browse files Browse the repository at this point in the history
  • Loading branch information
Knucklessg1 committed Mar 16, 2024
1 parent 587ee5c commit 1f822e4
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
2 changes: 0 additions & 2 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,2 @@
ffmpeg-python>=0.2.0
shazamio>=0.5.1
music-tag>=0.4.3
Pillow>=10.2.0
6 changes: 6 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,12 @@
packages=['media_manager'],
include_package_data=True,
install_requires=[str(requirement.requirement) for requirement in requirements],
extras_require={
'music': [
"shazamio>=0.5.1",
"music-tag>=0.4.3"
]
},
py_modules=['media_manager'],
package_data={'media_manager': ['media_manager']},
classifiers=[
Expand Down

0 comments on commit 1f822e4

Please sign in to comment.