代码拉取完成,页面将自动刷新
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"
]
)
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。