-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
35 lines (29 loc) · 1.08 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
"""nocaptchaai-playwright
nocaptchaai-playwright is a Python library that uses Playwright and NoCaptchaAI.com API to solve hCaptcha challenges.
An example of how to use this library can be found in examples/nopecha_solver_example.py.
"""
from setuptools import setup, find_packages
DOCLINES = (__doc__ or "").split("\n")
setup(
name="nocaptchaai_playwright",
version="0.1.0",
description="Playwright implementation of the NoCaptchaAI API",
long_description="\n".join(DOCLINES[2:]),
url="https://github.com/claudiofepereira/nocaptchaai-playwright",
author="Cláudio Pereira",
license="MIT",
packages=["nocaptchaai_playwright"],
install_requires=[
"playwright",
"requests",
],
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Natural Language :: English",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Topic :: Software Development :: Libraries :: Python Modules",
],
)