v1.0 first upload

This commit is contained in:
zotify 2023-03-24 23:57:10 +13:00
commit 2a96a12a2a
16 changed files with 1954 additions and 0 deletions

39
setup.cfg Normal file
View file

@ -0,0 +1,39 @@
[metadata]
name = zotify
version = 0.9.0
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
python_requires = >=3.9
install_requires =
librespot@https://github.com/kokarare1212/librespot-python/archive/refs/heads/main.zip
music-tag
mutagen
Pillow
pwinput
requests
tqdm
[options.entry_points]
console_scripts =
zotify = zotify.__main__:main
[flake8]
# Conflicts with black
ignore = E203, W503
max-line-length = 160
per-file-ignores =
zotify/file.py: E701