代码拉取完成,页面将自动刷新
from setuptools import setup, find_packages
from os import path as os_path
import blind_watermark
this_directory = os_path.abspath(os_path.dirname(__file__))
# 读取文件内容
def read_file(filename):
with open(os_path.join(this_directory, filename), encoding='utf-8') as f:
long_description = f.read()
return long_description
# 获取依赖
def read_requirements(filename):
return [line.strip() for line in read_file(filename).splitlines()
if not line.startswith('#')]
setup(name='blind_watermark',
python_requires='>=3.5',
version=blind_watermark.__version__,
description='Blind Watermark in Python',
long_description=read_file('docs/en/README.md'),
long_description_content_type="text/markdown",
url='https://github.com/guofei9987/blind_watermark',
author='Guo Fei',
license='MIT',
packages=find_packages(),
platforms=['linux', 'windows', 'macos'],
install_requires=['numpy', 'opencv-python', 'PyWavelets'],
zip_safe=False,
entry_points={
'console_scripts': [
'blind_watermark = blind_watermark.cli_tools:main'
]
})
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。