Added setup.py
This commit is contained in:
parent
eaff901748
commit
940ea2801f
1 changed files with 15 additions and 0 deletions
15
setup.py
Normal file
15
setup.py
Normal file
|
@ -0,0 +1,15 @@
|
|||
from setuptools import setup
|
||||
|
||||
setup(
|
||||
name='lyrics_dl',
|
||||
version='0.0.1',
|
||||
description='An ultimate cli tool for downloading song lyrics, inspired by other awesome *-dl programs.',
|
||||
packages=[
|
||||
"lyrics_dl",
|
||||
"lyrics_dl.providers",
|
||||
],
|
||||
install_requires=[
|
||||
"httpx>=0.24.1",
|
||||
"mutagen>=1.46.0",
|
||||
]
|
||||
)
|
Loading…
Add table
Add a link
Reference in a new issue