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