| from setuptools import setup, find_packages | |
| setup( | |
| name="clashcr", | |
| version="0.1.0", | |
| packages=find_packages(), | |
| install_requires=[ | |
| "opencv-python>=4.8.0", | |
| "numpy>=1.24.0", | |
| "pyyaml>=6.0", | |
| "requests>=2.31.0", | |
| "ultralytics>=8.0.0", | |
| "mss>=9.0.0", | |
| ], | |
| entry_points={ | |
| "console_scripts": [ | |
| "clashcr=clashcr.cli:main", | |
| ], | |
| }, | |
| python_requires=">=3.9", | |
| ) | |