trenden commited on
Commit
283e033
·
verified ·
1 Parent(s): 54be9cb

Upload pyproject.toml

Browse files
Files changed (1) hide show
  1. pyproject.toml +58 -0
pyproject.toml ADDED
@@ -0,0 +1,58 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ [build-system]
2
+ requires = ["setuptools", "wheel"]
3
+ build-backend = "setuptools.build_meta"
4
+
5
+ [project]
6
+ name = "modelapi"
7
+ version = "1.0.0"
8
+ description = "This project implements a container for a fine-tuned audio enhancement model."
9
+ readme = { file = "README.md", content-type = "text/markdown" }
10
+ license = { file = "LICENSE" }
11
+ classifiers = [
12
+ "Development Status :: 3 - Beta",
13
+ "Intended Audience :: Developers",
14
+ "Topic :: Software Development :: Build Tools",
15
+ "License :: OSI Approved :: MIT License",
16
+ "Programming Language :: Python :: 3 :: Only",
17
+ "Programming Language :: Python :: 3.10",
18
+ "Topic :: Scientific/Engineering",
19
+ "Topic :: Scientific/Engineering :: Mathematics",
20
+ "Topic :: Scientific/Engineering :: Artificial Intelligence",
21
+ "Topic :: Software Development",
22
+ "Topic :: Software Development :: Libraries",
23
+ "Topic :: Software Development :: Libraries :: Python Modules"
24
+ ]
25
+ requires-python = ">=3.10,<3.12"
26
+ dependencies = [
27
+ "fastapi==0.115.5",
28
+ "uvicorn==0.32.0",
29
+ "python-multipart==0.0.17",
30
+ "h5py==3.10.0",
31
+ "ipympl==0.9.3",
32
+ "librosa==0.10.1",
33
+ "ninja==1.11.1.1",
34
+ "numpy==1.24.4",
35
+ "pandas==2.0.3",
36
+ "pesq==0.0.4",
37
+ "pillow==10.2.0",
38
+ "protobuf==4.25.2",
39
+ "pyarrow==15.0.0",
40
+ "pyroomacoustics==0.7.3",
41
+ "pystoi==0.4.1",
42
+ "pytorch-lightning==2.1.4",
43
+ "scipy==1.10.1",
44
+ "setuptools==44.0.0",
45
+ "seaborn==0.13.2",
46
+ "torch==2.2.0",
47
+ "torch-ema==0.3",
48
+ "torchaudio==2.2.0",
49
+ "torchvision==0.17.0",
50
+ "torchinfo==1.8.0",
51
+ "torchsde==0.2.6",
52
+ "gdown==5.2.0",
53
+ "huggingface-hub==0.31.4",
54
+ "torch_pesq==0.1.2",
55
+ ]
56
+
57
+ [tool.setuptools.packages.find]
58
+ include = ["app","model"]