File size: 1,395 Bytes
db82088
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
60
61
62
63
64
65
66
67
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"

[project]
name = "echo"
version = "0.1.0"
description = "A companion robot that remembers you and grows with you"
readme = "README.md"
license = { text = "MIT" }
authors = [
    { name = "Justin Johnson" }
]
requires-python = ">=3.12"
classifiers = [
    "Development Status :: 3 - Alpha",
    "Intended Audience :: Developers",
    "License :: OSI Approved :: MIT License",
    "Programming Language :: Python :: 3.12",
]
dependencies = [
    "reachy-mini>=1.2.0",
    "gradio>=4.0.0",
    "lancedb>=0.4.0",
    "openai>=1.0.0",
    "ollama>=0.1.0",
    "numpy>=1.24.0",
    "pydantic>=2.0.0",
    "pyyaml>=6.0",
]

[project.optional-dependencies]
dev = [
    "pytest>=7.0.0",
    "pytest-asyncio>=0.21.0",
    "black>=23.0.0",
    "ruff>=0.1.0",
]
voice = [
    "elevenlabs>=0.2.0",
]

[project.entry-points."reachy_mini_apps"]
echo = "echo.main:ReachyMiniEcho"

[project.urls]
Homepage = "https://huggingface.co/spaces/RyeCatcher/echo"
Documentation = "https://runreachyrun.com/apps/echo"

[tool.setuptools.packages.find]
where = ["."]
include = ["echo*"]

[tool.black]
line-length = 100
target-version = ["py312"]

[tool.ruff]
line-length = 100
target-version = "py312"
select = ["E", "F", "I", "N", "W"]
ignore = ["E501"]

[tool.pytest.ini_options]
asyncio_mode = "auto"
testpaths = ["tests"]