Reorder setup params

This commit is contained in:
Hugo 2018-12-30 13:10:07 +02:00
parent 718fba04b8
commit 4626ff9670

View file

@ -41,10 +41,13 @@ with open("README.md") as f:
setup( setup(
name="pylast", name="pylast",
description="A Python interface to Last.fm and Libre.fm",
long_description=long_description, long_description=long_description,
long_description_content_type="text/markdown", long_description_content_type="text/markdown",
version=version, version=version,
author="Amr Hassan <amr.hassan@gmail.com> and Contributors", author="Amr Hassan <amr.hassan@gmail.com> and Contributors",
author_email="amr.hassan@gmail.com",
url="https://github.com/pylast/pylast",
tests_require=[ tests_require=[
"coverage", "coverage",
"flaky", "flaky",
@ -54,9 +57,7 @@ setup(
"pytest", "pytest",
"pyyaml", "pyyaml",
], ],
description="A Python interface to Last.fm and Libre.fm", python_requires=">=3.5",
author_email="amr.hassan@gmail.com",
url="https://github.com/pylast/pylast",
classifiers=[ classifiers=[
"Development Status :: 5 - Production/Stable", "Development Status :: 5 - Production/Stable",
"License :: OSI Approved :: Apache Software License", "License :: OSI Approved :: Apache Software License",
@ -71,7 +72,6 @@ setup(
"Programming Language :: Python :: Implementation :: CPython", "Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy", "Programming Language :: Python :: Implementation :: PyPy",
], ],
python_requires=">=3.5",
keywords=["Last.fm", "music", "scrobble", "scrobbling"], keywords=["Last.fm", "music", "scrobble", "scrobbling"],
packages=find_packages(exclude=("tests*",)), packages=find_packages(exclude=("tests*",)),
license="Apache2", license="Apache2",