forked from Xewdy444/Playwright-reCAPTCHA
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
37 lines (35 loc) · 1.22 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
36
37
from setuptools import find_packages, setup
with open("README.md", encoding="utf-8") as file:
long_description = file.read()
setup(
name="playwright-recaptcha",
version="0.3.2",
author="Xewdy444",
author_email="xewdy@xewdy.tech",
description="A library for solving reCAPTCHA v2 and v3 with Playwright",
license="MIT",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/Xewdy444/Playwright-reCAPTCHA",
packages=find_packages(),
python_requires=">=3.8",
install_requires=[
"playwright>=1.33.0",
"pydub==0.25.1",
"SpeechRecognition==3.10.0",
"tenacity==8.2.3",
],
classifiers=[
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Intended Audience :: Developers",
"Topic :: Software Development :: Testing",
"Topic :: Internet :: WWW/HTTP :: Browsers",
"Framework :: AsyncIO",
],
)