加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
setup.py 611 Bytes
一键复制 编辑 原始数据 按行查看 历史
airobot 提交于 2019-11-24 22:35 . 添加到pypi源,支持pip安装
from setuptools import setup
setup(name='idcardgenerator',
version='0.0.2',
description='idcardgenerator',
url='https://github.com/airob0t/idcardgenerator',
author='airobot',
author_email='airobot@airobot.link',
license='GPL-3.0',
packages=['idcardgenerator'],
# data_files=['idcardgenerator/usedres/empty.png', 'idcardgenerator/usedres/fzhei.ttf', 'idcardgenerator/usedres/hei.ttf', 'idcardgenerator/usedres/ico.icns', 'idcardgenerator/usedres/ocrb10bt.ttf'],
include_package_data=True,
install_requires=['numpy', 'pillow', 'opencv-python']
)
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化