-
Notifications
You must be signed in to change notification settings - Fork 121
/
pyproject.toml
38 lines (33 loc) · 946 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
28
29
30
31
32
33
34
35
36
37
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
packages = ["tinytroupe"]
include-package-data = true
[project]
name = "tinytroupe"
version = "0.3.0"
authors = [
{ name="Paulo Salem", email="[email protected]" }
]
description = "LLM-based people simulation for design, validation and insight generation in business."
readme = "README.md"
requires-python = ">=3.10"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
dependencies = [
"pandas",
"pytest",
"openai >= 1.40",
"tiktoken",
"msal",
"rich", "requests", "chevron",
"llama-index", "llama-index-embeddings-huggingface", "llama-index-readers-web",
"pypandoc", "docx", "markdown",
"jupyter"
]
[project.urls]
"Homepage" = "https://github.com/microsoft/tinytroupe"