Spaces:
Running
Running
| [build-system] | |
| requires = ["setuptools"] | |
| build-backend = "setuptools.build_meta" | |
| [project] | |
| name = "R3-MNE" | |
| version = "0.1.0" | |
| authors = [{ name = "Greg Salmon", email = "[email protected]" }] | |
| description = "" | |
| readme = "README.md" | |
| requires-python = ">=3.10" | |
| dependencies = [ | |
| #Media | |
| "aiortc>=1.13.0", | |
| "fastrtc>=0.0.33", | |
| "gradio>=5.49.0", | |
| "huggingface_hub>=0.34.4", | |
| "opencv-python>=4.12.0.88", | |
| #Environment variables | |
| "python-dotenv", | |
| #Local AI | |
| "faster-whisper>=1.0.0", | |
| "vaderSentiment>=3.3.2", | |
| #Reachy mini | |
| "reachy_mini_dances_library", | |
| "reachy_mini_toolbox", | |
| "reachy_mini>=1.0.0.rc4", | |
| ] | |
| [project.optional-dependencies] | |
| reachy_mini_wireless = [ | |
| "reachy_mini[gstreamer,wireless-version]", | |
| ] | |
| local_vision = ["torch", "transformers", "num2words"] | |
| yolo_vision = ["ultralytics", "supervision"] | |
| mediapipe_vision = ["mediapipe>=0.10.14"] | |
| all_vision = [ | |
| "torch", "transformers", "num2words", | |
| "ultralytics", "supervision", | |
| "mediapipe>=0.10.14", | |
| ] | |
| [dependency-groups] | |
| dev = [ | |
| "pytest", | |
| "pytest-asyncio", | |
| "ruff==0.12.0", | |
| "mypy==1.18.2", | |
| "pre-commit", | |
| "types-requests", | |
| ] | |
| [project.scripts] | |
| r3-mne = "reachy_mini_conversation_app.main:main" | |
| [project.entry-points."reachy_mini_apps"] | |
| r3-mne = "reachy_mini_conversation_app.main:R3MNE" | |
| [tool.setuptools] | |
| package-dir = { "" = "src" } | |
| include-package-data = true | |
| [tool.setuptools.packages.find] | |
| where = ["src"] | |
| [tool.setuptools.package-data] | |
| reachy_mini_conversation_app = [ | |
| "images/*", | |
| "demos/**/*.txt", | |
| "prompts_library/*.txt", | |
| ] | |
| [tool.ruff] | |
| line-length = 119 | |
| exclude = [".venv", "dist", "build", "**/__pycache__", "*.egg-info", ".mypy_cache", ".pytest_cache"] | |
| [tool.ruff.lint] | |
| select = [ | |
| "E", # pycodestyle errors | |
| "F", # pyflakes | |
| "W", # pycodestyle warnings | |
| "I", # isort | |
| "C4", # flake8-comprehensions | |
| "D", # pydocstyle | |
| ] | |
| ignore = [ | |
| "E501", # handled by formatter | |
| "D100", # ignore missing module docstrings | |
| "D203", # blank line before class docstring (conflicts with D211) | |
| "D213", # summary on second line (conflicts with D212) | |
| ] | |
| [tool.ruff.lint.isort] | |
| length-sort = true | |
| lines-after-imports = 2 | |
| no-lines-before = ["standard-library", "local-folder"] | |
| known-local-folder = ["reachy_mini_conversation_app"] | |
| known-first-party = ["reachy_mini", "reachy_mini_dances_library", "reachy_mini_toolbox"] | |
| split-on-trailing-comma = true | |
| [tool.ruff.format] | |
| quote-style = "double" | |
| indent-style = "space" | |
| skip-magic-trailing-comma = false | |
| line-ending = "auto" | |
| [tool.mypy] | |
| python_version = "3.12" | |
| files = ["src/"] | |
| ignore_missing_imports = true | |
| strict = true | |
| show_error_codes = true | |
| warn_unused_ignores = true | |