Files
Tidal-Media-Downloader/TIDALDL-PY/setup.py
Yaronzz 0751c37b35 update
2023-09-06 09:34:01 +08:00

24 lines
686 B
Python

from setuptools import setup, find_packages
from tidal_dl.printf import VERSION
setup(
name='tidal-dl',
version=VERSION,
license="Apache2",
description="Tidal Music Downloader.",
author='YaronH',
author_email="yaronhuang@foxmail.com",
packages=find_packages(exclude=['tidal_gui*']),
include_package_data=False,
platforms="any",
install_requires=["aigpy>=2022.7.8.1",
"requests>=2.22.0",
"pycryptodome",
"pydub",
"prettytable",
"lxml"],
entry_points={'console_scripts': ['tidal-dl = tidal_dl:main', ]}
)