mirror of
https://github.com/nathom/streamrip.git
synced 2025-05-13 14:44:49 -04:00
initial commit
This commit is contained in:
commit
3b6c1dc0bd
30 changed files with 6233 additions and 0 deletions
41
setup.py
Normal file
41
setup.py
Normal file
|
@ -0,0 +1,41 @@
|
|||
from setuptools import find_packages, setup
|
||||
|
||||
pkg_name = "qobuz-dl"
|
||||
|
||||
|
||||
def read_file(fname):
|
||||
with open(fname, "r") as f:
|
||||
return f.read()
|
||||
|
||||
|
||||
requirements = read_file("requirements.txt").strip().split()
|
||||
|
||||
|
||||
setup(
|
||||
name=pkg_name,
|
||||
version="0.9.7",
|
||||
author="Vitiko",
|
||||
author_email="vhnz98@gmail.com",
|
||||
description="The complete Lossless and Hi-Res music downloader for Qobuz",
|
||||
long_description=read_file("README.md"),
|
||||
long_description_content_type="text/markdown",
|
||||
url="https://github.com/vitiko98/Qobuz-DL",
|
||||
install_requires=requirements,
|
||||
entry_points={
|
||||
"console_scripts": [
|
||||
"qobuz-dl = qobuz_dl:main",
|
||||
"qdl = qobuz_dl:main",
|
||||
],
|
||||
},
|
||||
packages=find_packages(),
|
||||
classifiers=[
|
||||
"Programming Language :: Python :: 3",
|
||||
"License :: OSI Approved :: GNU General Public License (GPL)",
|
||||
"Operating System :: OS Independent",
|
||||
],
|
||||
python_requires=">=3.6",
|
||||
)
|
||||
|
||||
# rm -f dist/*
|
||||
# python3 setup.py sdist bdist_wheel
|
||||
# twine upload dist/*
|
Loading…
Add table
Add a link
Reference in a new issue