1 Star 0 Fork 96

SkyseeZhang / OCR

forked from myhub / OCR 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
setup.py 952 Bytes
一键复制 编辑 原始数据 按行查看 历史
myhub 提交于 2019-12-30 22:42 . stable version 1.5.0
# coding=utf-8
from setuptools import setup, find_packages
import os
import tools
for big_file in tools.BIG_FILES:
tools.join(big_file)
appname = "tr"
version = "1.5.0"
try:
with open("README.md", "r", encoding="utf-8") as f:
readme = f.read()
except:
readme = ""
packages = ["tr", "libtorch"]
setup(
name=appname,
version=version,
description=(
'''%s''' % appname
),
author='anycode',
author_email='anycode@yahoo.com',
maintainer='anycode',
maintainer_email='anycode@yahoo.com',
packages=packages,
platforms=["linux"],
url='https://pypi.org/project/%s/' % appname,
classifiers=[
'Programming Language :: Python',
'Intended Audience :: Developers',
'Topic :: Software Development :: Libraries'
],
install_requires=[
],
include_package_data=True,
long_description=readme,
long_description_content_type='text/markdown'
)
Python
1
https://gitee.com/SkyseeZhang/tr.git
git@gitee.com:SkyseeZhang/tr.git
SkyseeZhang
tr
OCR
master

搜索帮助