diff --git a/.github/workflows/sphinx.yml b/.github/workflows/sphinx.yml index 9672b73..2d8e0fd 100644 --- a/.github/workflows/sphinx.yml +++ b/.github/workflows/sphinx.yml @@ -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 diff --git a/docs/conf.py b/docs/conf.py index 6c5522f..7d4df1a 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -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", diff --git a/src/setup.py b/src/setup.py index bc4905a..d02f016 100644 --- a/src/setup.py +++ b/src/setup.py @@ -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,