Skip to content

Commit

Permalink
setup.py: reformat with black
Browse files Browse the repository at this point in the history
  • Loading branch information
stlehmann committed Feb 9, 2020
1 parent af1a432 commit ae6b5e7
Showing 1 changed file with 26 additions and 30 deletions.
56 changes: 26 additions & 30 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,53 +10,49 @@ def read(*names, **kwargs):
"""Open a file and read its content."""
with io.open(
os.path.join(os.path.dirname(__file__), *names),
encoding=kwargs.get("encoding", "utf8")
encoding=kwargs.get("encoding", "utf8"),
) as fp:
return fp.read()


def find_version(*file_paths):
"""Find current package version number."""
version_file = read(*file_paths)
version_match = re.search(r"^__version__ = ['\"]([^'\"]*)['\"]",
version_file, re.M)
version_match = re.search(r"^__version__ = ['\"]([^'\"]*)['\"]", version_file, re.M)
if version_match:
return version_match.group(1)
raise RuntimeError("Unable to find version string.")


long_description = read('README.md')
long_description = read("README.md")


if sys.argv[-1] == 'test':
os.system('coverage run -m unittest discover -s tests')
os.system('coverage html --include flask_mqtt/*')
os.system('coverage report -m --include flask_mqtt/*')
if sys.argv[-1] == "test":
os.system("coverage run -m unittest discover -s tests")
os.system("coverage html --include flask_mqtt/*")
os.system("coverage report -m --include flask_mqtt/*")
else:
setup(
name='Flask-MQTT',
version=find_version('flask_mqtt', '__init__.py'),
url='https://github.com/MrLeeh/Flask-MQTT',
license='MIT',
author='Stefan Lehmann',
author_email='[email protected]',
description='Flask extension for the MQTT protocol',
name="Flask-MQTT",
version=find_version("flask_mqtt", "__init__.py"),
url="https://github.com/MrLeeh/Flask-MQTT",
license="MIT",
author="Stefan Lehmann",
author_email="[email protected]",
description="Flask extension for the MQTT protocol",
long_description=long_description,
long_description_content_type='text/markdown',
packages=['flask_mqtt'],
platforms='any',
long_description_content_type="text/markdown",
packages=["flask_mqtt"],
platforms="any",
python_requires=">=3.6",
install_requires=[
'Flask',
'paho-mqtt'
],
install_requires=["Flask", "paho-mqtt"],
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python',
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
'Topic :: Software Development :: Libraries :: Python Modules'
]
"Development Status :: 5 - Production/Stable",
"Environment :: Web Environment",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"Topic :: Internet :: WWW/HTTP :: Dynamic Content",
"Topic :: Software Development :: Libraries :: Python Modules",
],
)

0 comments on commit ae6b5e7

Please sign in to comment.