commit
6ad0d3d4de
|
@ -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
|
||||
|
|
|
@ -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",
|
||||
|
|
15
src/setup.py
15
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,
|
||||
|
|
Loading…
Reference in New Issue