Rename module from lyrics-dl to lrc-dl

This commit is contained in:
mrsobakin 2024-11-11 05:25:48 +03:00
parent 4bfcbf17bd
commit 658e1bef77
No known key found for this signature in database
GPG key ID: 325CBF665E4FFD6E
16 changed files with 52 additions and 52 deletions

View file

@ -1,15 +1,15 @@
from setuptools import setup
setup(
name='lyrics_dl',
name='lrc_dl',
version='0.0.3',
description='An ultimate cli tool for downloading song lyrics, inspired by other awesome *-dl programs.',
packages=[
"lyrics_dl",
"lyrics_dl.providers",
"lrc_dl",
"lrc_dl.providers",
],
entry_points={
'console_scripts': ['lyrics-dl=lyrics_dl.main:main'],
'console_scripts': ['lrc-dl=lrc_dl.main:main'],
},
install_requires=[
"httpx>=0.24.1",