Akki0404 commited on
Commit
cf997a9
·
1 Parent(s): 5f288df

add pyproject.toml for openenv validate

Browse files
Files changed (1) hide show
  1. pyproject.toml +27 -0
pyproject.toml ADDED
@@ -0,0 +1,27 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ [build-system]
2
+ requires = ["setuptools>=61.0"]
3
+ build-backend = "setuptools.backends.legacy:build"
4
+
5
+ [project]
6
+ name = "voice-authenticity-openenv"
7
+ version = "1.0.0"
8
+ description = "Voice authenticity detection OpenEnv environment"
9
+ requires-python = ">=3.10"
10
+ dependencies = [
11
+ "librosa",
12
+ "praat-parselmouth",
13
+ "scikit-learn",
14
+ "numpy",
15
+ "openai",
16
+ "pydantic>=2.0.0",
17
+ "python-dotenv",
18
+ "soundfile",
19
+ "fastapi",
20
+ "uvicorn",
21
+ ]
22
+
23
+ [tool.openenv]
24
+ name = "voice-authenticity"
25
+ version = "1.0.0"
26
+ tasks = ["clean_detection", "compressed_detection", "adversarial_detection"]
27
+ entry_point = "app:app"