From d440e83263ee06a76e31f48d876d309404bdfc06 Mon Sep 17 00:00:00 2001 From: nathom Date: Thu, 25 Mar 2021 10:52:40 -0700 Subject: [PATCH] Twine upload working --- setup.py | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/setup.py b/setup.py index ac6df16..38075ec 100644 --- a/setup.py +++ b/setup.py @@ -19,8 +19,8 @@ setup( py_modules=["streamrip"], entry_points={ "console_scripts": [ - "rip = music_dl.cli:main", - "streamrip = music_dl.cli:main", + "rip = streamrip.cli:main", + "streamrip = streamrip.cli:main", ], }, packages=find_packages(), @@ -31,10 +31,10 @@ setup( "Operating System :: OS Independent", "Development Status :: 3 - Alpha", ], - python_requires=">=3.8", + python_requires=">=3.7", project_urls={ - "Bug Reports": "https://github.com/nathom/music-dl/issues", - "Source": "https://github.com/nathom/music-dl", + "Bug Reports": "https://github.com/nathom/streamrip/issues", + "Source": "https://github.com/nathom/streamrip", }, )