Skip to content
This repository has been archived by the owner on Oct 1, 2021. It is now read-only.

Commit

Permalink
Version bump to 2.8.2
Browse files Browse the repository at this point in the history
  • Loading branch information
balloob committed Aug 17, 2020
1 parent 8447159 commit 3e9519c
Showing 1 changed file with 21 additions and 21 deletions.
42 changes: 21 additions & 21 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,32 +4,32 @@

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

with open(os.path.join(here, 'README.md'), encoding='utf-8') as readme_file:
with open(os.path.join(here, "README.md"), encoding="utf-8") as readme_file:
long_description = readme_file.read()

setup(
name='netdisco',
version='2.8.1',
description='Discover devices on your local network',
name="netdisco",
version="2.8.2",
description="Discover devices on your local network",
long_description=long_description,
long_description_content_type='text/markdown',
url='https://github.com/home-assistant/netdisco',
author='Paulus Schoutsen',
author_email='Paulus@PaulusSchoutsen.nl',
license='Apache License 2.0',
install_requires=['requests>=2.0', 'zeroconf>=0.27.1'],
python_requires='>=3',
packages=find_packages(exclude=['tests', 'tests.*']),
long_description_content_type="text/markdown",
url="https://github.com/home-assistant/netdisco",
author="Paulus Schoutsen",
author_email="Paulus@PaulusSchoutsen.nl",
license="Apache License 2.0",
install_requires=["requests>=2.0", "zeroconf>=0.27.1"],
python_requires=">=3",
packages=find_packages(exclude=["tests", "tests.*"]),
zip_safe=False,
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Console',
'Intended Audience :: Developers',
'License :: OSI Approved :: Apache Software License',
'Operating System :: POSIX',
'Programming Language :: Python :: 3',
'Topic :: Utilities',
'Topic :: Home Automation',
'Topic :: System :: Networking',
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Operating System :: POSIX",
"Programming Language :: Python :: 3",
"Topic :: Utilities",
"Topic :: Home Automation",
"Topic :: System :: Networking",
],
)

0 comments on commit 3e9519c

Please sign in to comment.