From 4626ff9670ef08f9ed04d4db72804659ba45dce6 Mon Sep 17 00:00:00 2001 From: Hugo Date: Sun, 30 Dec 2018 13:10:07 +0200 Subject: [PATCH] Reorder setup params --- setup.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/setup.py b/setup.py index 496bb21..a7e7e3d 100755 --- a/setup.py +++ b/setup.py @@ -41,10 +41,13 @@ with open("README.md") as f: setup( name="pylast", + description="A Python interface to Last.fm and Libre.fm", long_description=long_description, long_description_content_type="text/markdown", version=version, author="Amr Hassan and Contributors", + author_email="amr.hassan@gmail.com", + url="https://github.com/pylast/pylast", tests_require=[ "coverage", "flaky", @@ -54,9 +57,7 @@ setup( "pytest", "pyyaml", ], - description="A Python interface to Last.fm and Libre.fm", - author_email="amr.hassan@gmail.com", - url="https://github.com/pylast/pylast", + python_requires=">=3.5", classifiers=[ "Development Status :: 5 - Production/Stable", "License :: OSI Approved :: Apache Software License", @@ -71,7 +72,6 @@ setup( "Programming Language :: Python :: Implementation :: CPython", "Programming Language :: Python :: Implementation :: PyPy", ], - python_requires=">=3.5", keywords=["Last.fm", "music", "scrobble", "scrobbling"], packages=find_packages(exclude=("tests*",)), license="Apache2",