Upload New File

This commit is contained in:
Zotify 2021-12-26 05:21:10 +00:00
parent 53f6cf2946
commit 70b836a91f
1 changed files with 29 additions and 0 deletions

29
setup.py Normal file
View File

@ -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,
)