23 lines
528 B
Python
23 lines
528 B
Python
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"
|
|
],
|
|
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',
|
|
) |