Skip to content

Commit 5d9cd81

Browse files
committed
Formatting with black
1 parent 9b85da1 commit 5d9cd81

File tree

1 file changed

+23
-23
lines changed

1 file changed

+23
-23
lines changed

setup.py

Lines changed: 23 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -10,36 +10,36 @@
1010

1111
here = os.path.abspath(os.path.dirname(__file__))
1212

13-
with open(os.path.join(here, 'README.rst'), encoding='utf-8') as readme_file:
13+
with open(os.path.join(here, "README.rst"), encoding="utf-8") as readme_file:
1414
long_description = readme_file.read()
1515

16-
if sys.argv[-1] == 'publish':
17-
os.system('python3 setup.py sdist upload')
16+
if sys.argv[-1] == "publish":
17+
os.system("python3 setup.py sdist upload")
1818
sys.exit()
1919

2020
setup(
21-
name='glances_api',
22-
version='0.2.0',
23-
description='Python API for interacting with Glances.',
21+
name="glances_api",
22+
version="0.2.0",
23+
description="Python API for interacting with Glances.",
2424
long_description=long_description,
25-
url='https://github.com/home-assistant-ecosystem/python-glances-api',
26-
download_url='https://github.com/home-assistant-ecosystem/python-glances-api/releases',
27-
author='Fabian Affolter',
28-
author_email='[email protected]',
29-
license='MIT',
30-
install_requires=['aiohttp>=3.7.4,<4', 'async_timeout<4'],
31-
packages=['glances_api'],
25+
url="https://github.com/home-assistant-ecosystem/python-glances-api",
26+
download_url="https://github.com/home-assistant-ecosystem/python-glances-api/releases",
27+
author="Fabian Affolter",
28+
author_email="[email protected]",
29+
license="MIT",
30+
install_requires=["aiohttp>=3.7.4,<4", "async_timeout<4"],
31+
packages=["glances_api"],
3232
zip_safe=True,
3333
classifiers=[
34-
'Development Status :: 3 - Alpha',
35-
'Environment :: Console',
36-
'Intended Audience :: Developers',
37-
'License :: OSI Approved :: MIT License',
38-
'Operating System :: MacOS :: MacOS X',
39-
'Operating System :: Microsoft :: Windows',
40-
'Operating System :: POSIX',
41-
'Programming Language :: Python :: 3.5',
42-
'Programming Language :: Python :: 3.6',
43-
'Topic :: Utilities',
34+
"Development Status :: 3 - Alpha",
35+
"Environment :: Console",
36+
"Intended Audience :: Developers",
37+
"License :: OSI Approved :: MIT License",
38+
"Operating System :: MacOS :: MacOS X",
39+
"Operating System :: Microsoft :: Windows",
40+
"Operating System :: POSIX",
41+
"Programming Language :: Python :: 3.5",
42+
"Programming Language :: Python :: 3.6",
43+
"Topic :: Utilities",
4444
],
4545
)

0 commit comments

Comments
 (0)