-
Notifications
You must be signed in to change notification settings - Fork 15
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
1 parent
3a3e661
commit 5c3fd21
Showing
1 changed file
with
23 additions
and
25 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 |
---|---|---|
@@ -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"], | ||
) |