2023-03-24 11:57:10 +01:00
|
|
|
[metadata]
|
|
|
|
name = zotify
|
2024-02-17 05:59:23 +01:00
|
|
|
version = 0.9.4
|
2023-03-24 11:57:10 +01:00
|
|
|
author = Zotify Contributors
|
|
|
|
description = A highly customizable music and podcast downloader
|
|
|
|
long_description = file: README.md
|
|
|
|
long_description_content_type = text/markdown
|
|
|
|
keywords = python, music, podcast, downloader
|
|
|
|
licence = Zlib
|
|
|
|
classifiers =
|
|
|
|
Programming Language :: Python :: 3
|
|
|
|
License :: OSI Approved :: zlib/libpng License
|
|
|
|
Operating System :: POSIX :: Linux
|
|
|
|
Operating System :: Microsoft :: Windows
|
|
|
|
Operating System :: MacOS
|
|
|
|
Topic :: Multimedia :: Sound/Audio
|
|
|
|
|
|
|
|
[options]
|
|
|
|
packages = zotify
|
2023-05-28 15:09:27 +02:00
|
|
|
python_requires = >=3.10
|
2023-03-24 11:57:10 +01:00
|
|
|
install_requires =
|
2023-05-28 15:09:27 +02:00
|
|
|
librespot>=0.0.9
|
2023-07-31 08:14:25 +02:00
|
|
|
music-tag@git+https://zotify.xyz/zotify/music-tag
|
2023-03-24 11:57:10 +01:00
|
|
|
mutagen
|
|
|
|
Pillow
|
|
|
|
pwinput
|
|
|
|
requests
|
|
|
|
tqdm
|
|
|
|
|
|
|
|
[options.entry_points]
|
|
|
|
console_scripts =
|
|
|
|
zotify = zotify.__main__:main
|
|
|
|
|
|
|
|
[flake8]
|
|
|
|
max-line-length = 160
|
2024-02-17 05:59:23 +01:00
|
|
|
ignore =
|
|
|
|
E701
|
|
|
|
E704
|
|
|
|
W503
|
2023-09-08 07:22:55 +02:00
|
|
|
|
|
|
|
[mypy]
|
|
|
|
warn_unused_configs = True
|
|
|
|
|
|
|
|
[mypy-librespot.*]
|
|
|
|
ignore_missing_imports = True
|
|
|
|
|
|
|
|
[mypy-music_tag]
|
|
|
|
ignore_missing_imports = True
|
|
|
|
|
2024-02-17 05:59:23 +01:00
|
|
|
[mypy-mutagen.*]
|
|
|
|
ignore_missing_imports = True
|
|
|
|
|
2023-09-08 07:22:55 +02:00
|
|
|
[mypy-pwinput]
|
|
|
|
ignore_missing_imports = True
|
|
|
|
|
|
|
|
[mypy-tqdm]
|
|
|
|
ignore_missing_imports = True
|