3 Star 0 Fork 0

mirrors_stanfordnlp/pdf-struct

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
setup.py 1.48 KB
一键复制 编辑 原始数据 按行查看 历史
from setuptools import setup, find_packages
try:
with open('README.md') as f:
readme = f.read()
except IOError:
readme = ''
name = 'pdf-struct'
exec(open('pdf_struct/_version.py').read())
release = __version__
version = '.'.join(release.split('.')[:2])
with open('requirements.txt') as fin:
requirements = [line.strip() for line in fin]
setup(
name=name,
author='Yuta Koreeda',
author_email='yuta.koreeda@hal.hitachi.com',
maintainer='Yuta Koreeda',
maintainer_email='yuta.koreeda@hal.hitachi.com',
version=release,
description='Logical structure analysis of visually structured documents.',
long_description=readme,
long_description_content_type='text/markdown',
url='https://github.com/stanfordnlp/pdf-struct',
packages=find_packages(),
install_requires=requirements,
setup_requires=requirements,
license='Apache',
entry_points = {
'console_scripts': ['pdf-struct=pdf_struct.cli:cli'],
},
classifiers=[
"Environment :: Console",
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Intended Audience :: Education",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.8",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Scientific/Engineering :: Information Analysis"
]
)
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/mirrors_stanfordnlp/pdf-struct.git
git@gitee.com:mirrors_stanfordnlp/pdf-struct.git
mirrors_stanfordnlp
pdf-struct
pdf-struct
main

搜索帮助