-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
26 lines (24 loc) · 878 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
from setuptools import setup, find_packages
setup(
name='lcasr',
version='1.0',
description='Code for training long-context asr models on spotify podcast corpus',
url='https://github.com/robflynnyh/long-context-asr',
author='Rob Flynn',
author_email='[email protected]',
license='Apache 2.0',
packages=find_packages(),
include_package_data=True,
install_requires=['torch',
'numpy',
],
classifiers=[
'Development Status :: 2 - Alpha',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: Apache Software License',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.8',
],
)