-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
41 lines (38 loc) · 1.29 KB
/
pyproject.toml
File metadata and controls
41 lines (38 loc) · 1.29 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "agent_stream"
version = "0.2.0"
description = "Streaming utilities for agent/LLM systems (RabbitMQ, etc.)"
authors = [
{ name = "Hieu TRAN", email = "hieutrantrung.it@gmail.com" }
]
license = { file = "LICENSE" }
readme = "README.md"
requires-python = ">=3.10,<4.0"
dependencies = [
"aio-pika>=9.3.0",
"autogen-agentchat>=0.5.7,<0.6.0",
"autogen-core>=0.5.7,<0.6.0"
]
keywords = ["streaming", "agent", "LLM", "RabbitMQ", "sse", "filters", "AI", "autogen", "message", "realtime"]
classifiers = [
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Intended Audience :: Developers",
"Topic :: Software Development :: Libraries",
"Topic :: Communications",
"Topic :: System :: Distributed Computing"
]
[project.urls]
Homepage = "https://github.com/Cognitive-Stack/agent-stream"
Repository = "https://github.com/Cognitive-Stack/agent-stream"
Issues = "https://github.com/Cognitive-Stack/agent-stream/issues"
[tool.hatch.build]
# Use the src layout
packages = ["src/agent_stream"]