| [build-system] | |
| requires = ["setuptools", "wheel"] | |
| build-backend = "setuptools.build_meta" | |
| [project] | |
| name = "modelapi" | |
| version = "1.0.0" | |
| description = "This project implements a container for a fine-tuned audio enhancement model." | |
| readme = { file = "README.md", content-type = "text/markdown" } | |
| license = { file = "LICENSE" } | |
| classifiers = [ | |
| "Development Status :: 3 - Beta", | |
| "Intended Audience :: Developers", | |
| "Topic :: Software Development :: Build Tools", | |
| "License :: OSI Approved :: MIT License", | |
| "Programming Language :: Python :: 3 :: Only", | |
| "Programming Language :: Python :: 3.10", | |
| "Topic :: Scientific/Engineering", | |
| "Topic :: Scientific/Engineering :: Mathematics", | |
| "Topic :: Scientific/Engineering :: Artificial Intelligence", | |
| "Topic :: Software Development", | |
| "Topic :: Software Development :: Libraries", | |
| "Topic :: Software Development :: Libraries :: Python Modules" | |
| ] | |
| requires-python = ">=3.10,<3.12" | |
| dependencies = [ | |
| "fastapi==0.115.5", | |
| "uvicorn==0.32.0", | |
| "python-multipart==0.0.17", | |
| "h5py==3.10.0", | |
| "ipympl==0.9.3", | |
| "librosa==0.10.1", | |
| "ninja==1.11.1.1", | |
| "numpy==1.24.4", | |
| "pandas==2.0.3", | |
| "pesq==0.0.4", | |
| "pillow==10.2.0", | |
| "protobuf==4.25.2", | |
| "pyarrow==15.0.0", | |
| "pyroomacoustics==0.7.3", | |
| "pystoi==0.4.1", | |
| "pytorch-lightning==2.5.1", | |
| "scipy==1.10.1", | |
| "setuptools==44.0.0", | |
| "seaborn==0.13.2", | |
| "torch==2.2.0", | |
| "torch-ema==0.3", | |
| "torchaudio==2.2.0", | |
| "torchvision==0.17.0", | |
| "torchinfo==1.8.0", | |
| "torchsde==0.2.6", | |
| "gdown==5.2.0", | |
| "torch_pesq==0.1.2", | |
| "pyarmor==9.1.8" | |
| ] | |
| [tool.setuptools.packages.find] | |
| include = ["app","model"] |