Twine upload working

This commit is contained in:
nathom 2021-03-25 10:52:40 -07:00
parent 1ce080fbd2
commit d440e83263

View file

@ -19,8 +19,8 @@ setup(
py_modules=["streamrip"], py_modules=["streamrip"],
entry_points={ entry_points={
"console_scripts": [ "console_scripts": [
"rip = music_dl.cli:main", "rip = streamrip.cli:main",
"streamrip = music_dl.cli:main", "streamrip = streamrip.cli:main",
], ],
}, },
packages=find_packages(), packages=find_packages(),
@ -31,10 +31,10 @@ setup(
"Operating System :: OS Independent", "Operating System :: OS Independent",
"Development Status :: 3 - Alpha", "Development Status :: 3 - Alpha",
], ],
python_requires=">=3.8", python_requires=">=3.7",
project_urls={ project_urls={
"Bug Reports": "https://github.com/nathom/music-dl/issues", "Bug Reports": "https://github.com/nathom/streamrip/issues",
"Source": "https://github.com/nathom/music-dl", "Source": "https://github.com/nathom/streamrip",
}, },
) )