Add console_script
, load configs from config dir.
This commit is contained in:
parent
c8c8e36dfe
commit
6af4fc3948
4 changed files with 76 additions and 37 deletions
5
setup.py
5
setup.py
|
@ -2,12 +2,15 @@ from setuptools import setup
|
|||
|
||||
setup(
|
||||
name='lyrics_dl',
|
||||
version='0.0.1',
|
||||
version='0.0.2',
|
||||
description='An ultimate cli tool for downloading song lyrics, inspired by other awesome *-dl programs.',
|
||||
packages=[
|
||||
"lyrics_dl",
|
||||
"lyrics_dl.providers",
|
||||
],
|
||||
entry_points={
|
||||
'console_scripts': ['lyrics-dl=lyrics_dl:__main__'],
|
||||
},
|
||||
install_requires=[
|
||||
"httpx>=0.24.1",
|
||||
"mutagen>=1.46.0",
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue