加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
setup.py 981 Bytes
一键复制 编辑 原始数据 按行查看 历史
wilab 提交于 2019-10-13 10:26 . 优化crnn
#!/usr/bin/env python
# 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.3.0"
with open("README.md", "r", encoding="utf-8") as f:
readme = f.read()
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=["all"],
url='https://pypi.org/project/%s/' % appname,
classifiers=[
'Operating System :: OS Independent',
'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'
)
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化