1 Star 0 Fork 850

Decompile / DrissionPage

forked from g1879 / DrissionPage 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
setup.py 1.18 KB
AI 代码解读
一键复制 编辑 原始数据 按行查看 历史
# -*- coding:utf-8 -*-
from setuptools import setup, find_packages
with open("README.md", "r", encoding='utf-8') as fh:
long_description = fh.read()
setup(
name="DrissionPage",
version="3.2.26",
author="g1879",
author_email="g1879@qq.com",
description="Python based web automation tool. It can control the browser and send and receive data packets.",
long_description=long_description,
long_description_content_type="text/markdown",
license="BSD",
keywords="DrissionPage",
url="https://gitee.com/g1879/DrissionPage",
include_package_data=True,
packages=find_packages(),
zip_safe=False,
install_requires=[
'lxml',
'requests',
'cssselect',
'DownloadKit>=0.5.3',
'FlowViewer>=0.3.0',
'websocket-client',
'click~=8.1.3',
'tldextract'
],
classifiers=[
"Programming Language :: Python :: 3.6",
"Development Status :: 4 - Beta",
"Topic :: Utilities",
"License :: OSI Approved :: BSD License",
],
python_requires='>=3.6',
entry_points={
'console_scripts': [
'dp = DrissionPage.commons.cli:main',
],
},
)
Python
1
https://gitee.com/decompile/DrissionPage.git
git@gitee.com:decompile/DrissionPage.git
decompile
DrissionPage
DrissionPage
master

搜索帮助