加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
setup.py 805 Bytes
一键复制 编辑 原始数据 按行查看 历史
dataabc 提交于 2020-06-09 20:37 . docs: 优化说明文档结构
import setuptools
with open('README.md', 'r', encoding='utf-8') as fh:
long_description = fh.read()
setuptools.setup(
name='weibo-spider',
version='0.0.8',
author='Chen Lei',
author_email='chillychen1991@gmail.com',
description='新浪微博爬虫,用python爬取新浪微博数据。',
long_description=long_description,
long_description_content_type='text/markdown',
url='https://github.com/dataabc/weiboSpider',
packages=setuptools.find_packages(),
package_data={'weibo_spider': ['config_sample.json']},
classifiers=[
'Programming Language :: Python :: 3',
'Operating System :: OS Independent',
],
install_requires=[
'absl-py',
'lxml',
'requests',
'tqdm',
],
python_requires='>=3.6',
)
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化