-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathsetup.py
More file actions
29 lines (28 loc) · 691 Bytes
/
setup.py
File metadata and controls
29 lines (28 loc) · 691 Bytes
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
27
28
29
from setuptools import setup, find_packages
setup(
name="lslm",
version="0.1.0",
description="Listening-while-Speaking Language Model Implementation",
author="San",
packages=find_packages(),
install_requires=[
"torch>=1.8.0",
"transformers>=4.0.0",
"torchaudio>=0.8.0",
"matplotlib>=3.3.0",
"numpy>=1.19.0",
"jax>=0.4.13",
"tensorflow>=2.12.0",
"soundfile>=0.12.1",
"librosa>=0.10.1",
],
extras_require={
"dev": [
"pytest>=7.0.0",
"black>=23.0.0",
"isort>=5.12.0",
"flake8>=6.0.0",
]
},
python_requires=">=3.7",
)