from setuptools import setup, find_packages setup( name="image-editor", version="1.0.0", packages=find_packages(), install_requires=[ "numpy", "opencv-python", "PyQt6==6.4.2", "pyqt6-tools" ], entry_points={ 'console_scripts': [ 'run-image-editor=editor.image_editor:main', ], }, classifiers=[ "Programming Language :: Python :: 3", "License :: MIT License", "Operating System :: OS Independent", ], python_requires='>=3.6', )