microsoft/TypeAgent

Public

mirrored fromhttps://github.com/microsoft/TypeAgentAvailable

CodeCommitsIssuesPull requestsActionsInsightsSecurity
a4b7e351efdbd469063a4be27ba9ccc40b7c4c00

Branches

Tags

  • No tags available.
0Branches0Tags
Go to file
Add file
Code

Clone

HTTPS

Download ZIP

python/ta/pyproject.toml

27lines · modecode

1[build-system]
2requires = ["setuptools>=67", "wheel"]
3build-backend = "setuptools.build_meta"
4
5[project]
6name = "typeagent"
7version = "0.1.0"
8description = "TypeAgent implements an agentic memory framework."
9authors = [
10 { name = "Guido van Rossum", email = "gvanrossum@gmail.com" },
11 { name = "Steven Lucco" },
12 { name = "Umesh Madan" },
13 { name = "Guido van Rossum" },
14]
15requires-python = ">=3.12"
16dependencies = [
17 "typechat @ git+https://github.com/microsoft/TypeChat#subdirectory=python",
18]
19
20[tool.setuptools]
21# Needed so setuptools doesn't complain about testdata.
22packages = [
23 "typeagent",
24 "typeagent.aitools",
25 "typeagent.knowpro",
26 "typeagent.podcasts",
27]
28