-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
35 lines (30 loc) · 657 Bytes
/
pyproject.toml
File metadata and controls
35 lines (30 loc) · 657 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
[build-system]
requires = ["setuptools>=42", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "APIPod"
version = "1.0.6"
description="Create web-APIs for long-running tasks"
requires-python = ">=3.8"
authors = [
{ name = "SocAIty" }
]
license = {file = "LICENSE"}
readme = "README.md"
dependencies = [
"uvicorn",
"fastapi",
'python-multipart>=0.0.20',
"media-toolkit>=0.02.22",
"jinja2",
"toml"
]
[project.scripts]
apipod = "apipod.cli:main"
[project.optional-dependencies]
runpod = [
"runpod>=1.7.7"
]
[project.urls]
Repository = "https://github.com/SocAIty/apipod"
Homepage = "https://www.socaity.ai"