Spaces:
Running
Running
8bitkick
commited on
Commit
·
bf33112
1
Parent(s):
539edb0
Add setuptools configuration for package data and entry points
Browse files- pyproject.toml +7 -0
pyproject.toml
CHANGED
|
@@ -15,3 +15,10 @@ dependencies = [
|
|
| 15 |
|
| 16 |
[project.entry-points."reachy_mini_apps"]
|
| 17 |
reachy_mini_app_example = "reachy_mini_app_example.main:ExampleApp"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 15 |
|
| 16 |
[project.entry-points."reachy_mini_apps"]
|
| 17 |
reachy_mini_app_example = "reachy_mini_app_example.main:ExampleApp"
|
| 18 |
+
|
| 19 |
+
|
| 20 |
+
[tool.setuptools]
|
| 21 |
+
packages = ["reachy_mini_app_example"]
|
| 22 |
+
|
| 23 |
+
[tool.setuptools.package-data]
|
| 24 |
+
reachy_mini_app_example = ["*.html", "*.css", "*.js"]
|