Commit
·
654ad40
1
Parent(s):
817c2f9
Fix app name.
Browse files- MANIFEST.in +1 -1
- pyproject.toml +2 -2
MANIFEST.in
CHANGED
@@ -1 +1 @@
|
|
1 |
-
recursive-include
|
|
|
1 |
+
recursive-include red_light_green_light/*
|
pyproject.toml
CHANGED
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
|
|
4 |
|
5 |
|
6 |
[project]
|
7 |
-
name = "
|
8 |
version = "0.1.0"
|
9 |
description = "Red green light game for Reachy Mini"
|
10 |
readme = "README.md"
|
@@ -23,7 +23,7 @@ include-package-data = true
|
|
23 |
where = ["."]
|
24 |
|
25 |
[tool.setuptools.package-data]
|
26 |
-
|
27 |
|
28 |
[project.entry-points."reachy_mini_apps"]
|
29 |
red_light_green_light = "red_light_green_light.main:RedLightGreenLightApp"
|
|
|
4 |
|
5 |
|
6 |
[project]
|
7 |
+
name = "red_light_green_light"
|
8 |
version = "0.1.0"
|
9 |
description = "Red green light game for Reachy Mini"
|
10 |
readme = "README.md"
|
|
|
23 |
where = ["."]
|
24 |
|
25 |
[tool.setuptools.package-data]
|
26 |
+
red_light_green_light = ["**/*"] # Inclut tous les fichiers non .py
|
27 |
|
28 |
[project.entry-points."reachy_mini_apps"]
|
29 |
red_light_green_light = "red_light_green_light.main:RedLightGreenLightApp"
|