Skip to content

Commit 63d4858

Browse files
committed
Formatting with black
1 parent f701874 commit 63d4858

File tree

1 file changed

+20
-20
lines changed

1 file changed

+20
-20
lines changed

setup.py

Lines changed: 20 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -10,31 +10,31 @@
1010
here = os.path.abspath(os.path.dirname(__file__))
1111

1212
# Get the long description from the relevant file
13-
with open(os.path.join(here, 'README.rst'), encoding='utf-8') as desc:
13+
with open(os.path.join(here, "README.rst"), encoding="utf-8") as desc:
1414
long_description = desc.read()
1515

1616
setup(
17-
name='netdata',
18-
version='0.2.0',
19-
description='Python API for interacting with Netdata.',
17+
name="netdata",
18+
version="0.2.0",
19+
description="Python API for interacting with Netdata.",
2020
long_description=long_description,
21-
url='https://github.com/home-assistant-ecosystem/python-netdata',
22-
download_url='https://github.com/home-assistant-ecosystem/python-netdata/releases',
23-
author='Fabian Affolter',
24-
author_email='[email protected]',
25-
license='MIT',
26-
install_requires=['aiohttp>=3.7.4,<4', 'async_timeout<4'],
27-
packages=['netdata'],
21+
url="https://github.com/home-assistant-ecosystem/python-netdata",
22+
download_url="https://github.com/home-assistant-ecosystem/python-netdata/releases",
23+
author="Fabian Affolter",
24+
author_email="[email protected]",
25+
license="MIT",
26+
install_requires=["aiohttp>=3.7.4,<4", "async_timeout<4"],
27+
packages=["netdata"],
2828
zip_safe=True,
2929
classifiers=[
30-
'Development Status :: 3 - Alpha',
31-
'Environment :: Console',
32-
'Intended Audience :: Developers',
33-
'License :: OSI Approved :: MIT License',
34-
'Operating System :: MacOS :: MacOS X',
35-
'Operating System :: Microsoft :: Windows',
36-
'Operating System :: POSIX',
37-
'Programming Language :: Python :: 3.5',
38-
'Topic :: Utilities',
30+
"Development Status :: 3 - Alpha",
31+
"Environment :: Console",
32+
"Intended Audience :: Developers",
33+
"License :: OSI Approved :: MIT License",
34+
"Operating System :: MacOS :: MacOS X",
35+
"Operating System :: Microsoft :: Windows",
36+
"Operating System :: POSIX",
37+
"Programming Language :: Python :: 3.5",
38+
"Topic :: Utilities",
3939
],
4040
)

0 commit comments

Comments
 (0)