Skip to content

Commit

Permalink
Bump version to 3.2.2
Browse files Browse the repository at this point in the history
  • Loading branch information
MartinHjelmare committed Nov 8, 2024
1 parent 3a3e661 commit 5c3fd21
Showing 1 changed file with 23 additions and 25 deletions.
48 changes: 23 additions & 25 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,38 +1,36 @@
from setuptools import setup

with open('README.md') as f:
with open("README.md") as f:
long_description = f.read()

VERSION = "3.2.1"
VERSION = "3.2.2"

setup(
name='ha-ffmpeg',
name="ha-ffmpeg",
version=VERSION,
license='BSD License',
author='Pascal Vizeli',
author_email='[email protected]',
url='https://github.com/pvizeli/ha-ffmpeg',
download_url='https://github.com/pvizeli/ha-ffmpeg/tarball/'+VERSION,
description=('A library that handling with ffmpeg for home-assistant'),
license="BSD License",
author="Pascal Vizeli",
author_email="[email protected]",
url="https://github.com/pvizeli/ha-ffmpeg",
download_url="https://github.com/pvizeli/ha-ffmpeg/tarball/" + VERSION,
description=("A library that handling with ffmpeg for home-assistant"),
long_description=long_description,
classifiers=[
'Programming Language :: Python',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Scientific/Engineering :: Atmospheric Science',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
"Programming Language :: Python",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Scientific/Engineering :: Atmospheric Science",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
],
keywords=['ffmpeg', 'homeassistant', 'wrapper', 'api'],
keywords=["ffmpeg", "homeassistant", "wrapper", "api"],
zip_safe=False,
platforms='any',
packages=['haffmpeg'],
platforms="any",
packages=["haffmpeg"],
include_package_data=True,
install_requires=[
'async_timeout'
]
install_requires=["async_timeout"],
)

0 comments on commit 5c3fd21

Please sign in to comment.