From 70b836a91fb4f6ec0e19490e62e151d911283b6b Mon Sep 17 00:00:00 2001 From: Zotify <10505468-zotify@users.noreply.gitlab.com> Date: Sun, 26 Dec 2021 05:21:10 +0000 Subject: [PATCH] Upload New File --- setup.py | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 setup.py diff --git a/setup.py b/setup.py new file mode 100644 index 0000000..3b730af --- /dev/null +++ b/setup.py @@ -0,0 +1,29 @@ +import pathlib +from setuptools import setup +import setuptools + + + +# The directory containing this file +HERE = pathlib.Path(__file__).parent + +# The text of the README file +README = (HERE / "README.md").read_text() + +# This call to setup() does all the work +setup( + name="zotify", + version="0.5.3", + description="A music and podcast downloader.", + long_description=README, + long_description_content_type="text/markdown", + url="https://gitlab.com/zotify/zotify.git", + author="zotify", + classifiers=[ + "Programming Language :: Python :: 3.9", + ], + packages=['zotify'], + install_requires=['ffmpy', 'music_tag', 'Pillow', 'protobuf', 'tabulate', 'tqdm', + 'librespot @ https://github.com/kokarare1212/librespot-python/archive/refs/heads/rewrite.zip'], + include_package_data=True, +)