typed-ffmpeg icon indicating copy to clipboard operation
typed-ffmpeg copied to clipboard

handle module name conflict with ffmpeg-python

Open lucemia opened this issue 1 year ago • 0 comments
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
    ],
)

lucemia avatar Oct 07 '24 09:10 lucemia