diff --git a/setup.py b/setup.py index 64e7d6fc..9d844ea9 100644 --- a/setup.py +++ b/setup.py @@ -48,7 +48,7 @@ extras_require={ 'dev': ['coverage', 'flake8', 'mypy', 'pdoc3', 'pytest'], }, - packages=find_packages(), + packages=[p for p in find_packages() if p.startswith('audiocraft')], package_data={'audiocraft': ['py.typed']}, include_package_data=True, license='MIT License',