souging commited on
Commit
3b17c10
·
verified ·
1 Parent(s): a9be2cd

Create pyproject.toml

Browse files
Files changed (1) hide show
  1. pyproject.toml +32 -0
pyproject.toml ADDED
@@ -0,0 +1,32 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
+
27
+ dependencies = [
28
+ "fastapi==0.115.5", "uvicorn==0.32.0", "python-multipart==0.0.17"
29
+ ]
30
+
31
+ [tool.setuptools.packages.find]
32
+ include = ["app","model"]