-
Notifications
You must be signed in to change notification settings - Fork 71
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
26 additions
and
30 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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", | ||
], | ||
) |