-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpyproject.toml
More file actions
50 lines (46 loc) · 1.4 KB
/
Copy pathpyproject.toml
File metadata and controls
50 lines (46 loc) · 1.4 KB
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
[build-system]
requires = ["setuptools==82.0.1"]
build-backend = "setuptools.build_meta"
[project]
name = "runinfra"
version = "0.2.0"
description = "RunInfra SDK for optimized inference deployments across text, embeddings, image, and audio routes"
readme = "README.md"
requires-python = ">=3.9"
authors = [{ name = "RunInfra" }]
license = "LicenseRef-Proprietary"
license-files = ["LICENSE"]
keywords = [
"runinfra",
"inference",
"openai",
"responses",
"embeddings",
"tts",
"asr",
"image-generation",
]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Typing :: Typed",
]
[project.urls]
Documentation = "https://runinfra.ai/docs/tools-sdks/runinfra-sdk"
Homepage = "https://runinfra.ai"
Issues = "https://github.com/RightNow-AI/runinfra-sdk/issues"
Source = "https://github.com/RightNow-AI/runinfra-sdk"
Changelog = "https://github.com/RightNow-AI/runinfra-sdk/blob/main/python/CHANGELOG.md"
[tool.setuptools.packages.find]
where = ["."]
include = ["runinfra*"]
[tool.setuptools.package-data]
runinfra = ["py.typed"]