Format with Black 18.6b1
This commit is contained in:
parent
e5a5278d51
commit
da9465c100
13 changed files with 458 additions and 414 deletions
19
setup.py
19
setup.py
|
@ -10,9 +10,16 @@ setup(
|
|||
long_description_content_type="text/markdown",
|
||||
version="2.3.0.dev0",
|
||||
author="Amr Hassan <amr.hassan@gmail.com> and Contributors",
|
||||
install_requires=['six'],
|
||||
tests_require=['mock', 'pytest', 'coverage', 'pycodestyle', 'pyyaml',
|
||||
'pyflakes', 'flaky'],
|
||||
install_requires=["six"],
|
||||
tests_require=[
|
||||
"mock",
|
||||
"pytest",
|
||||
"coverage",
|
||||
"pycodestyle",
|
||||
"pyyaml",
|
||||
"pyflakes",
|
||||
"flaky",
|
||||
],
|
||||
description="A Python interface to Last.fm and Libre.fm",
|
||||
author_email="amr.hassan@gmail.com",
|
||||
url="https://github.com/pylast/pylast",
|
||||
|
@ -32,10 +39,10 @@ setup(
|
|||
"Programming Language :: Python :: Implementation :: CPython",
|
||||
"Programming Language :: Python :: Implementation :: PyPy",
|
||||
],
|
||||
python_requires='>=2.7.10, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*',
|
||||
python_requires=">=2.7.10, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*",
|
||||
keywords=["Last.fm", "music", "scrobble", "scrobbling"],
|
||||
packages=find_packages(exclude=('tests*',)),
|
||||
license="Apache2"
|
||||
packages=find_packages(exclude=("tests*",)),
|
||||
license="Apache2",
|
||||
)
|
||||
|
||||
# End of file
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue