Skip to content

Commit

Permalink
0.12.1
Browse files Browse the repository at this point in the history
add requests to setup.py
  • Loading branch information
lukafilipxvic committed Sep 30, 2024
1 parent be501bc commit cc4558d
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion pyzam/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "0.12"
__version__ = "0.12.1"
2 changes: 1 addition & 1 deletion pyzam/__main__.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#! /usr/bin/env python3

"""
Pyzam 0.12
Pyzam 0.12.1
A CLI music recognition tool for audio and mixtapes.
"""

Expand Down
3 changes: 2 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

setuptools.setup(
name="pyzam",
version="0.12",
version="0.12.1",
entry_points={"console_scripts": ["pyzam = pyzam.__main__:main"]},
author="lukafilipxvic",
description="A CLI music recognition tool for audio and mixtapes.",
Expand All @@ -14,6 +14,7 @@
url="https://github.com/lukafilipxvic/Pyzam",
install_requires=[
"asyncio",
"requests",
"rich",
"soundfile",
"shazamio",
Expand Down

0 comments on commit cc4558d

Please sign in to comment.