jonathan@tuxmani.fr commited on
Commit
c75bd8e
·
1 Parent(s): 8d5fb1f

Fix sound dependency

Browse files
Files changed (1) hide show
  1. pyproject.toml +5 -2
pyproject.toml CHANGED
@@ -24,7 +24,10 @@ package-dir = { "" = "." }
24
  include-package-data = true
25
 
26
  [tool.setuptools.packages.find]
27
- where = ["src"]
28
 
29
  [tool.setuptools.package-data]
30
- amazon_this_object = ["**/*","sound/*"] # Also include all non-.py files
 
 
 
 
24
  include-package-data = true
25
 
26
  [tool.setuptools.packages.find]
27
+ where = ["."]
28
 
29
  [tool.setuptools.package-data]
30
+ amazon_this_object = ["**/*","./src/sound/*"] # Also include all non-.py files
31
+
32
+ [tool.ruff]
33
+ exclude = [".venv", "dist", "build", "**/__pycache__", "*.egg-info", ".mypy_cache", ".pytest_cache"]