From d38a01f2a2f33ed3a661b1401bd927a889b477f9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Piotr=20=C5=BBelasko?= Date: Wed, 29 Sep 2021 15:00:55 -0400 Subject: [PATCH] Reformatting --- setup.py | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/setup.py b/setup.py index f9dae924b..6c720e121 100644 --- a/setup.py +++ b/setup.py @@ -4,15 +4,15 @@ from setuptools import find_packages, setup from pathlib import Path icefall_dir = Path(__file__).parent -install_requires = (icefall_dir / 'requirements.txt').read_text().splitlines() +install_requires = (icefall_dir / "requirements.txt").read_text().splitlines() setup( - name='icefall', - version='1.0', - python_requires='>=3.6.0', - description='Speech processing recipes using k2 and Lhotse.', - author='The k2 and Lhotse Development Team', - license='Apache-2.0 License', + name="icefall", + version="1.0", + python_requires=">=3.6.0", + description="Speech processing recipes using k2 and Lhotse.", + author="The k2 and Lhotse Development Team", + license="Apache-2.0 License", packages=find_packages(), install_requires=install_requires, classifiers=[ @@ -26,6 +26,6 @@ setup( "Topic :: Multimedia :: Sound/Audio :: Speech", "Topic :: Scientific/Engineering :: Artificial Intelligence", "Topic :: Software Development :: Libraries :: Python Modules", - "Typing :: Typed" + "Typing :: Typed", ], )