typed-ffmpeg
typed-ffmpeg copied to clipboard
handle module name conflict with ffmpeg-python
trafficstars
from setuptools import setup
setup(
name='your_package',
version='1.0.0',
install_requires=[
# Your other dependencies
],
extras_require={
'full': ['another_dependency'],
},
# Use an incompatibility marker for the conflicting package
install_requires=[
'incompatible_package<0', # Prevents any version of incompatible_package from being installed
],
)