zotify/setup.py
2021-12-26 05:21:10 +00:00

29 lines
837 B
Python

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