-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpyproject.toml
27 lines (24 loc) · 861 Bytes
/
pyproject.toml
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
[build-system]
requires = ["setuptools>=42", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "openai-streaming"
version = "0.0.0-dev"
description = "Work with OpenAI's streaming API at ease, with Python generators"
authors = [{ name = "Almog Baku", email = "[email protected]" }]
license = { text = "MIT" }
readme = "README.md"
keywords = ["openai", "gpt", "llm", "streaming", "stream", "generator"]
dependencies = [
"openai>=1.14.0,<2.0.0",
"json-streamer>=0.1.0,<0.2.0",
"pydantic>=2.0.2,<3.0.0",
"docstring-parser>=0.15"
]
requires-python = ">=3.9"
[project.optional-dependencies]
yaml = ["PyYAML>6.0.0,<7.0.0"]
[project.urls]
"Homepage" = "https://github.com/AlmogBaku/openai-streaming"
"Bug Reports" = "https://github.com/AlmogBaku/openai-streaming/issues"
"Source" = "https://github.com/AlmogBaku/openai-streaming/"