| [build-system] |
| requires = ["setuptools>=61.0"] |
| build-backend = "setuptools.build_meta" |
|
|
|
|
| [project] |
| name = "twenty_questions_game" |
| version = "0.1.0" |
| description = "20 Questions game for Reachy Mini with OpenAI Realtime API" |
| readme = "README.md" |
| requires-python = ">=3.10" |
| license = {text = "Apache-2.0"} |
| dependencies = [ |
| "reachy-mini", |
| "python-dotenv", |
| "datasets", |
| "langchain-openai", |
| "langchain-core" |
| ] |
| keywords = ["reachy-mini-app"] |
|
|
| [project.entry-points."reachy_mini_apps"] |
| twenty_questions_game = "twenty_questions_game.main:ReachyMiniTwentyQuestions" |
|
|
| [tool.setuptools] |
| package-dir = { "" = "." } |
| include-package-data = true |
|
|
| [tool.setuptools.packages.find] |
| where = ["."] |
|
|
| [tool.setuptools.package-data] |
| twenty_questions_game = ["**/*"] |