| [build-system] | |
| requires = ["setuptools>=61.0", "wheel"] | |
| build-backend = "setuptools.build_meta" | |
| [project] | |
| name = "haven_kitchen_os" | |
| version = "1.0.0" | |
| description = "Haven Kitchen OS - An AI-powered home management system featuring Olivia (household manager) and Brie (chef) for Reachy Mini" | |
| readme = "README.md" | |
| requires-python = ">=3.10" | |
| license = {text = "MIT"} | |
| authors = [ | |
| {name = "MindXpansion", email = "contact@mindxpansion.com"} | |
| ] | |
| keywords = [ | |
| "reachy-mini", | |
| "robotics", | |
| "ai-assistant", | |
| "smart-home", | |
| "voice-assistant", | |
| "recipe-manager", | |
| "huggingface" | |
| ] | |
| classifiers = [ | |
| "Development Status :: 4 - Beta", | |
| "Intended Audience :: Developers", | |
| "License :: OSI Approved :: MIT License", | |
| "Programming Language :: Python :: 3", | |
| "Programming Language :: Python :: 3.10", | |
| "Programming Language :: Python :: 3.11", | |
| "Programming Language :: Python :: 3.12", | |
| "Topic :: Scientific/Engineering :: Artificial Intelligence", | |
| "Topic :: Home Automation", | |
| ] | |
| dependencies = [ | |
| "reachy-mini", | |
| "streamlit>=1.28.0", | |
| "langchain-groq>=0.1.0", | |
| "langchain-openai>=0.1.0", | |
| "langchain-core>=0.1.0", | |
| "langchain-community>=0.0.20", | |
| "elevenlabs>=1.0.0", | |
| "audio-recorder-streamlit>=0.0.8", | |
| "SpeechRecognition>=3.10.0", | |
| "python-dotenv>=1.0.0", | |
| "pydantic>=2.0.0", | |
| "numpy>=1.24.0", | |
| "qrcode[pil]>=7.4.0", | |
| ] | |
| [project.optional-dependencies] | |
| dev = [ | |
| "pytest>=7.0.0", | |
| "black>=23.0.0", | |
| "ruff>=0.1.0", | |
| ] | |
| [project.urls] | |
| Homepage = "https://huggingface.co/spaces/MindXpansion/haven_kitchen_os" | |
| Repository = "https://github.com/MindXpansion/haven_kitchen_os" | |
| [project.entry-points.reachy_mini_apps] | |
| Haven_ReachyMini_Contest_Final = "haven_kitchen_os.main:HavenKitchenOs" | |
| [tool.setuptools.packages.find] | |
| where = ["."] | |
| include = ["haven_kitchen_os*"] | |
| [tool.setuptools.package-data] | |
| haven_kitchen_os = [ | |
| "static/*", | |
| "*.json", | |
| ] | |