forked from BaiduSpider/BaiduSpider
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
27 lines (25 loc) · 961 Bytes
/
setup.py
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="BaiduSpider",
version="1.0.2.6",
author="Sam Zhang",
author_email="[email protected]",
description="BaiduSpider,一个爬取百度的利器",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/BaiduSpider/BaiduSpider",
packages=setuptools.find_packages(),
classifiers=[
"Programming Language :: Python :: 3 :: Only",
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"License :: Free for non-commercial use",
"Topic :: Software Development :: Libraries",
"Topic :: Utilities",
],
python_requires=">=3.6",
install_requires=["requests>=2.25.1", "bs4>=0.0.1"],
)