Commit
a091506
·
verified ·
1 Parent(s): 2349faf

Create pyproject.toml

Browse files
Files changed (1) hide show
  1. pyproject.toml +18 -0
pyproject.toml ADDED
@@ -0,0 +1,18 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ [build-system]
2
+ requires = ["setuptools", "wheel"]
3
+ build-backend = "setuptools.build_meta"
4
+
5
+ [project]
6
+ name = "nemo-project"
7
+ version = "0.1.0"
8
+ description = "EgypTalk-ASR-v2 Gradio app"
9
+ authors = [{ name = "User" }]
10
+ requires-python = ">=3.9"
11
+ dependencies = [
12
+ "gradio>=4.0.0",
13
+ "torch",
14
+ "nemo_toolkit[asr]",
15
+ "evaluate",
16
+ "spaces",
17
+ "huggingface_hub",
18
+ ]