mirror of
https://github.com/microsoft/autogen.git
synced 2026-02-11 00:24:58 -05:00
* First pass: message loop in main thread * pypi version bump * Fix readme * Better example * Fixed docs * pre-commit fixes * Convenience methods for protobufs * support non-color consoles * Non-color console and allow user input * Minor update to single_threaded_demo * new pypi version * pre-commit fixes * change pypi name --------- Co-authored-by: Qingyun Wu <qingyun0327@gmail.com>
37 lines
843 B
TOML
37 lines
843 B
TOML
[build-system]
|
|
requires = ["hatchling"]
|
|
build-backend = "hatchling.build"
|
|
|
|
[project]
|
|
name = "autogencap"
|
|
version = "0.0.11"
|
|
authors = [
|
|
{ name="Rajan Chari", email="rajan.jedi@gmail.com" },
|
|
]
|
|
dependencies = [
|
|
"pyzmq >= 25.1.2",
|
|
"protobuf >= 4.25.3",
|
|
"termcolor >= 2.4.0",
|
|
"pyautogen >= 0.2.23",
|
|
]
|
|
description = "CAP w/ autogen bindings"
|
|
readme = "README.md"
|
|
requires-python = ">=3.8"
|
|
classifiers = [
|
|
"Programming Language :: Python :: 3",
|
|
"License :: OSI Approved :: MIT License",
|
|
"Operating System :: OS Independent",
|
|
]
|
|
|
|
[project.urls]
|
|
"Homepage" = "https://github.com/microsoft/autogen"
|
|
"Bug Tracker" = "https://github.com/microsoft/autogen/issues"
|
|
|
|
[tool.hatch.build.targets.sdist]
|
|
packages = ["autogencap"]
|
|
only-packages = true
|
|
|
|
[tool.hatch.build.targets.wheel]
|
|
packages = ["autogencap"]
|
|
only-packages = true
|