mirror of
https://zotify.xyz/zotify/zotify.git
synced 2024-11-10 01:02:06 +01:00
30 lines
837 B
Python
30 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,
|
||
|
)
|