Merge pull request #76 from AndreiDrang/release

Release
This commit is contained in:
Andrei 2022-12-14 19:46:13 +03:00 committed by GitHub
commit 6ad0d3d4de
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 20 additions and 3 deletions

View File

@ -18,7 +18,9 @@ jobs:
- uses: actions/setup-python@v3
- name: Build library requirements
run: pip install -r src/requirements.txt
run: |
pip install -r docs/requirements.txt && \
pip install -r src/requirements.txt
- name: Build docs
run: make doc

View File

@ -45,7 +45,9 @@ html_show_sourcelink = False
html_context = {
"project_links": [
ProjectLink("PyPI Releases", "https://pypi.org/project/python3-anticaptcha/"),
ProjectLink("Source Code", "https://github.com/AndreiDrang/python3-anticaptcha"),
ProjectLink(
"Source Code", "https://github.com/AndreiDrang/python3-anticaptcha"
),
ProjectLink(
"AntiCaptcha",
"http://getcaptchasolution.com/vchfpctqyz",

View File

@ -12,7 +12,7 @@ from python3_anticaptcha.__version__ import __version__
# Package meta-data.
NAME = "python3-anticaptcha"
DESCRIPTION = "Python 3 Anti-Captcha service library with AIO module."
URL = "https://github.com/AndreiDrang/python3-anticaptcha"
URL = "https://andreidrang.github.io/python3-anticaptcha"
EMAIL = "python-captcha@pm.me"
AUTHOR = "AndreiDrang, redV0ID"
REQUIRES_PYTHON = ">=3.7.0"
@ -78,6 +78,10 @@ setup(
package_dir={"python3-anticaptcha": "python3_anticaptcha"},
include_package_data=True,
url=URL,
project_urls={
"Documentation": URL,
"Source": "https://github.com/AndreiDrang/python3-anticaptcha",
},
author_email=EMAIL,
license="MIT",
keywords="""
@ -85,11 +89,20 @@ setup(
anticaptcha
python3
recaptcha
recaptchav2
recaptchav3
security
api
funcaptcha
keycaptcha
recaptcha
geetest
hcaptcha
python-library
python-anticaptcha
anticaptcha-client
imagecaptcha
turnstile
""",
python_requires=REQUIRES_PYTHON,
zip_safe=False,