File setup.py of Package failed_python-libusbsio
```python
from setuptools import setup, find_packages
setup(
name="libusbsio",
version="2.1.11",
packages=find_packages(),
include_package_data=True,
package_data={
"libusbsio": [
"bin/linux_*/*.so",
"bin/osx_*/*.dylib",
"bin/Win32/*.dll",
"bin/x64/*.dll",
],
},
install_requires=[
# Add any dependencies here
],
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
],
python_requires=">=3.7",
)
```
---
### 3. Update `MANIFEST.in`
The `MANIFEST.in` file ensures that non-Python files (like shared libraries) are included in the source distribution.