Update setup.py

This commit is contained in:
nathom 2021-03-25 10:33:58 -07:00
parent f43a372bc4
commit 0c8933420a

View file

@ -1,6 +1,6 @@
from setuptools import find_packages, setup from setuptools import find_packages, setup
pkg_name = "music-dl" pkg_name = "streamrip"
def read_file(fname): def read_file(fname):
@ -14,27 +14,24 @@ requirements = read_file("requirements.txt").strip().split()
# https://github.com/pypa/sampleproject/blob/main/setup.py # https://github.com/pypa/sampleproject/blob/main/setup.py
setup( setup(
name=pkg_name, name=pkg_name,
version="0.9.7", version="0.1",
url="https://github.com/vitiko98/Qobuz-DL",
install_requires=requirements, install_requires=requirements,
py_modules=["streamrip"],
entry_points={ entry_points={
"console_scripts": [ "console_scripts": [
"music-dl = music_dl:main", "rip = music_dl.cli:main",
"rip = music_dl:main", "streamrip = music_dl.cli:main",
], ],
}, },
packages=find_packages(), packages=find_packages(),
classifiers=[ classifiers=[
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.9",
"License :: OSI Approved :: GNU General Public License (GPL)", "License :: OSI Approved :: GNU General Public License (GPL)",
"Operating System :: OS Independent", "Operating System :: OS Independent",
"Development Status :: 3 - Alpha", "Development Status :: 3 - Alpha",
], ],
package_dir={"", "music-dl"}, python_requires=">=3.8",
packages=find_packages(where="music-dl"),
python_requires=">=3.9",
project_urls={ project_urls={
"Bug Reports": "https://github.com/nathom/music-dl/issues", "Bug Reports": "https://github.com/nathom/music-dl/issues",
"Source": "https://github.com/nathom/music-dl", "Source": "https://github.com/nathom/music-dl",