FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
weiboSpider/setup.py at python2 · dataabc/weiboSpider · GitHub
dataabc
/
weiboSpider
Public
Notifications
You must be signed in to change notification settings
Fork
2.1k
Star
9.7k
Code
Issues
39
Pull requests
5
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Issues
Pull requests
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
weiboSpider
/
setup.py
Copy path
More file actions
More file actions
Latest commit
History
History
History
27 lines (25 loc) · 746 Bytes
Breadcrumbs
weiboSpider
/
setup.py
Copy path
File metadata and controls
27 lines (25 loc) · 746 Bytes
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
import
setuptools
with
open
(
'README.md'
,
'r'
,
encoding
=
'utf-8'
)
as
fh
:
long_description
=
fh
.
read
()
setuptools
.
setup
(
name
=
'weibo-spider'
,
version
=
'0.0.5'
,
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
(),
classifiers
=
[
'Programming Language :: Python :: 3'
,
'Operating System :: OS Independent'
,
],
install_requires
=
[
'absl-py'
,
'lxml'
,
'requests'
,
'tqdm'
,
],
python_requires
=
'>=3.6'
,
)
Back
|
FazBrowse Home
|
New Git URL