From e528840e966e145c22a2e8dca06aa5672094c534 Mon Sep 17 00:00:00 2001 From: g1879 Date: Fri, 22 May 2020 01:21:04 +0800 Subject: [PATCH] =?UTF-8?q?=E6=8F=90=E4=BA=A4pypi?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- README.md | 2 +- requirements.txt | 1 - setup.py | 9 +++++---- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index 97f11d1..6d74cc9 100644 --- a/README.md +++ b/README.md @@ -513,7 +513,7 @@ MixPage封装了页面操作的常用功能,可在driver和session模式间无 ​ 返回driver对象,如没有则创建,调用时会切换到driver模式。 -### session +### session ​ 返回session对象,如没有则创建。 diff --git a/requirements.txt b/requirements.txt index 447d8e0..934a26b 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,5 +1,4 @@ selenium~=3.141.0 requests-html~=0.10.0 requests~=2.23.0 -# setuptools~=41.2.0 tldextract~=2.2.2 \ No newline at end of file diff --git a/setup.py b/setup.py index e7fbe08..8b66346 100644 --- a/setup.py +++ b/setup.py @@ -3,7 +3,7 @@ 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() setup( @@ -11,9 +11,9 @@ setup( version="0.8.0", author="g1879", author_email="g1879@qq.com", - description="A module that integrates selenium and requests session, encapsulates common page operations, " - "can achieve seamless switching between the two modes.", + description="A module that integrates selenium and requests session, encapsulates common page operations.", long_description=long_description, + long_description_content_type="text/markdown", license="BSD", keywords="DrissionPage", url="https://github.com/g1879/DrissionPage", @@ -25,7 +25,8 @@ setup( "requests" ], classifiers=[ - "Development Status :: 1 - Alpha", + "Programming Language :: Python :: 3.6", + "Development Status :: 4 - Beta", "Topic :: Utilities", "License :: OSI Approved :: BSD License", ],