-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
31 lines (28 loc) · 981 Bytes
/
Copy pathpyproject.toml
File metadata and controls
31 lines (28 loc) · 981 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "codai-sdk"
version = "0.1.0"
description = "Official Python SDK for the codai AI gateway — chat, streaming, agents, feedback, models."
readme = "README.md"
license = "MIT"
requires-python = ">=3.9"
authors = [{ name = "codai", email = "support@codai.ro" }]
keywords = ["codai", "ai", "llm", "openai-compatible", "gateway", "agents"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Topic :: Software Development :: Libraries",
]
dependencies = []
[project.urls]
Homepage = "https://codai.ro"
Repository = "https://github.com/dragoscv/codai-sdk-python"
Issues = "https://github.com/dragoscv/codai-sdk-python/issues"
[tool.hatch.build.targets.wheel]
packages = ["src/codai"]