提交pypi

This commit is contained in:
g1879 2020-05-22 01:21:04 +08:00
parent 7c8894d4de
commit e528840e96
3 changed files with 6 additions and 6 deletions

View File

@ -513,7 +513,7 @@ MixPage封装了页面操作的常用功能可在driver和session模式间无
返回driver对象如没有则创建调用时会切换到driver模式。 返回driver对象如没有则创建调用时会切换到driver模式。
### session ### session
返回session对象如没有则创建。 返回session对象如没有则创建。

View File

@ -1,5 +1,4 @@
selenium~=3.141.0 selenium~=3.141.0
requests-html~=0.10.0 requests-html~=0.10.0
requests~=2.23.0 requests~=2.23.0
# setuptools~=41.2.0
tldextract~=2.2.2 tldextract~=2.2.2

View File

@ -3,7 +3,7 @@
from setuptools import setup, find_packages from setuptools import setup, find_packages
with open("README.md", "r",encoding='utf-8') as fh: with open("README.md", "r", encoding='utf-8') as fh:
long_description = fh.read() long_description = fh.read()
setup( setup(
@ -11,9 +11,9 @@ setup(
version="0.8.0", version="0.8.0",
author="g1879", author="g1879",
author_email="g1879@qq.com", author_email="g1879@qq.com",
description="A module that integrates selenium and requests session, encapsulates common page operations, " description="A module that integrates selenium and requests session, encapsulates common page operations.",
"can achieve seamless switching between the two modes.",
long_description=long_description, long_description=long_description,
long_description_content_type="text/markdown",
license="BSD", license="BSD",
keywords="DrissionPage", keywords="DrissionPage",
url="https://github.com/g1879/DrissionPage", url="https://github.com/g1879/DrissionPage",
@ -25,7 +25,8 @@ setup(
"requests" "requests"
], ],
classifiers=[ classifiers=[
"Development Status :: 1 - Alpha", "Programming Language :: Python :: 3.6",
"Development Status :: 4 - Beta",
"Topic :: Utilities", "Topic :: Utilities",
"License :: OSI Approved :: BSD License", "License :: OSI Approved :: BSD License",
], ],