From adb068eb8242fe79dafce5a100c3fdfad934c7a5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Piotr=20=C5=BBelasko?= Date: Fri, 1 Oct 2021 04:43:08 -0400 Subject: [PATCH] setup.py (#64) --- .gitignore | 1 + setup.py | 31 +++++++++++++++++++++++++++++++ 2 files changed, 32 insertions(+) create mode 100644 setup.py diff --git a/.gitignore b/.gitignore index e6c84ca5e..f4f703243 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,4 @@ +icefall.egg-info/ data __pycache__ path.sh diff --git a/setup.py b/setup.py new file mode 100644 index 000000000..6c720e121 --- /dev/null +++ b/setup.py @@ -0,0 +1,31 @@ +#!/usr/bin/env python3 + +from setuptools import find_packages, setup +from pathlib import Path + +icefall_dir = Path(__file__).parent +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", + packages=find_packages(), + install_requires=install_requires, + classifiers=[ + "Development Status :: 3 - Alpha", + "Programming Language :: Python :: 3.6", + "Programming Language :: Python :: 3.7", + "Programming Language :: Python :: 3.8", + "Intended Audience :: Science/Research", + "Operating System :: POSIX :: Linux", + "License :: OSI Approved :: Apache Software License", + "Topic :: Multimedia :: Sound/Audio :: Speech", + "Topic :: Scientific/Engineering :: Artificial Intelligence", + "Topic :: Software Development :: Libraries :: Python Modules", + "Typing :: Typed", + ], +)