Initial commit

This commit is contained in:
Tristan Ferrua
2021-01-29 13:26:31 +00:00
parent b2a8137b77
commit 998c5910d8
3 changed files with 478 additions and 0 deletions

17
setup.py Normal file

@ -0,0 +1,17 @@
from setuptools import setup
setup(name="miniplayer",
version="1.0",
description="An mpd client with album art and basic functionality written for use with the kitty terminal.",
url="https://github.com/GuardKenzie/miniplayer",
author="Tristan Ferrua",
author_email="tristanferrua@gmail.com",
license="MIT",
scripts=["bin/miniplayer"],
install_requires=[
"python-mpd2",
"ffmpeg",
"pixcat",
"pillow"
])