Skip to content

Commit cc4558d

Browse files
committed
0.12.1
add requests to setup.py
1 parent be501bc commit cc4558d

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

pyzam/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "0.12"
1+
__version__ = "0.12.1"

pyzam/__main__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#! /usr/bin/env python3
22

33
"""
4-
Pyzam 0.12
4+
Pyzam 0.12.1
55
A CLI music recognition tool for audio and mixtapes.
66
"""
77

setup.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
setuptools.setup(
77
name="pyzam",
8-
version="0.12",
8+
version="0.12.1",
99
entry_points={"console_scripts": ["pyzam = pyzam.__main__:main"]},
1010
author="lukafilipxvic",
1111
description="A CLI music recognition tool for audio and mixtapes.",
@@ -14,6 +14,7 @@
1414
url="https://github.com/lukafilipxvic/Pyzam",
1515
install_requires=[
1616
"asyncio",
17+
"requests",
1718
"rich",
1819
"soundfile",
1920
"shazamio",

0 commit comments

Comments
 (0)