1 Star 1 Fork 0

wangbaiyu/pubmed_parser

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
setup.py 1.97 KB
一键复制 编辑 原始数据 按行查看 历史
titipata 提交于 2020-02-07 00:23 . Update version to 0.2.2
#! /usr/bin/env python
from setuptools import setup
if __name__ == "__main__":
setup(
name="pubmed_parser",
version="0.2.2",
description="A python parser for Pubmed Open-Access Subset and MEDLINE XML repository",
url="https://github.com/titipata/pubmed_parser",
download_url="https://github.com/titipata/pubmed_parser.git",
author="Titipat Achakulvisut",
author_email="[email protected]",
license="MIT (c) 2015 - 2019 Titipat Achakulvisut, Daniel E. Acuna",
install_requires=[
"lxml",
"unidecode",
"requests",
"six",
"numpy",
"pytest",
"pytest-cov",
],
packages=["pubmed_parser"],
package_data={"pubmed_parser.data": ["*.xml.gz", "*.nxml", "*.txt"],},
keywords=[
'Python',
'MEDLINE',
'PubMed',
'Biomedical corpus',
'Natural Language Processing'
],
classifiers=[
"Intended Audience :: Science/Research",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"Topic :: Software Development",
"Topic :: Scientific/Engineering",
"Operating System :: Microsoft :: Windows",
"Operating System :: Unix",
"Operating System :: MacOS",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
],
platforms="any",
project_urls={
"Source": "https://github.com/titipata/pubmed_parser",
"Documentation": "http://titipata.github.io/pubmed_parser",
"Bug Reports": "https://github.com/titipata/pubmed_parser/issues",
},
)
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/wangbaiyu/pubmed_parser.git
[email protected]:wangbaiyu/pubmed_parser.git
wangbaiyu
pubmed_parser
pubmed_parser
master

搜索帮助