mirror of
https://github.com/k2-fsa/icefall.git
synced 2025-08-09 01:52:41 +00:00
setup.py (#64)
This commit is contained in:
parent
707d7017a7
commit
adb068eb82
1
.gitignore
vendored
1
.gitignore
vendored
@ -1,3 +1,4 @@
|
|||||||
|
icefall.egg-info/
|
||||||
data
|
data
|
||||||
__pycache__
|
__pycache__
|
||||||
path.sh
|
path.sh
|
||||||
|
31
setup.py
Normal file
31
setup.py
Normal file
@ -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",
|
||||||
|
],
|
||||||
|
)
|
Loading…
x
Reference in New Issue
Block a user