1234567891011121314151617181920 |
- from setuptools import setup, find_packages
- setup(
- name="watermark_detector",
- version="1.0",
- description="AI模型模型水印提取验证工具",
-
- packages=find_packages(),
-
- install_requires=['onnxruntime', 'opencv-python~=4.9.0.80', 'numpy']
-
-
-
-
-
-
- )
|