Spaces:
Running
Running
File size: 1,414 Bytes
c1d0c23 | 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 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 | [build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
packages = ["tinytroupe"]
include-package-data = true
[project]
name = "tinytroupe"
version = "0.5.2"
authors = [
{ name="Paulo Salem", email="paulo.salem@microsoft.com" }
]
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", "pytest-cov",
"openai >= 1.65",
"tiktoken",
"msal",
"rich", "requests", "chevron",
"llama-index", "llama-index-embeddings-huggingface", "llama-index-readers-web", "llama-index-embeddings-azure-openai",
"pypandoc", "docx", "markdown",
"jupyter",
"matplotlib",
"pydantic",
"pypandoc",
"textdistance",
"scipy",
"transformers==4.38.2",
"huggingface-hub==0.22.2"
]
[project.urls]
"Homepage" = "https://github.com/microsoft/tinytroupe"
[tool.pytest.ini_options]
pythonpath = [
"."
]
testpaths = [
"./tests/"
]
markers = [
"examples: mark a test as the execution of examples",
"notebooks: mark a test as a more specific Jupyter notebook execution example",
]
addopts = "--cov=tinytroupe --cov-report=html --cov-report=xml" |