1 Star 0 Fork 0

liuguoxionglang/TextRecognitionDataGenerator

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
setup.py 1.74 KB
一键复制 编辑 原始数据 按行查看 历史
Edouard Belval 提交于 2020-05-21 20:50 . Update requirements.txt
# Always prefer setuptools over distutils
from setuptools import setup, find_packages
# To use a consistent encoding
from codecs import open
from os import path
here = path.abspath(path.dirname(__file__))
with open(path.join(here, "README.md"), encoding="utf-8") as f:
long_description = f.read()
setup(
name="trdg",
version="1.6.0",
description="TextRecognitionDataGenerator: A synthetic data generator for text recognition",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/Belval/TextRecognitionDataGenerator",
author="Edouard Belval",
author_email="edouard@belval.org",
# Choose your license
license="MIT",
# See https://pypi.python.org/pypi?%3Aaction=list_classifiers
classifiers=[
# 3 - Alpha
# 4 - Beta
# 5 - Production/Stable
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
],
keywords="synthetic data text-recognition training-set-generator ocr dataset fake text",
packages=find_packages(exclude=["contrib", "docs", "tests"]),
include_package_data=True,
install_requires=[
"pillow>=7.0.0",
"numpy>=1.16.4,<1.17",
"requests>=2.20.0",
"opencv-python>=4.2.0.32",
"tqdm>=4.23.0",
"beautifulsoup4>=4.6.0",
"diffimg==0.2.3",
],
entry_points={
"console_scripts": [
"trdg=trdg.run:main"
],
},
)
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/lgx_com_cn/TextRecognitionDataGenerator.git
git@gitee.com:lgx_com_cn/TextRecognitionDataGenerator.git
lgx_com_cn
TextRecognitionDataGenerator
TextRecognitionDataGenerator
master

搜索帮助