-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
43 lines (36 loc) · 1.08 KB
/
pyproject.toml
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
38
39
40
41
42
43
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta" # If not defined, then legacy behavior can happen.
[project]
name = "temu-captcha-solver"
version = "0.3.1"
description = "This package integrates with Selenium or Playwright to solve any Temu captcha in one line of code."
readme = "README.md"
requires-python = ">=3.10"
keywords = ["temu", "captcha", "solver", "selenium", "playwright"]
authors = [
{name = "Toughdata LLC", email = "[email protected]" }
]
classifiers = [
"Intended Audience :: Developers",
"Topic :: Software Development :: Build Tools",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3 :: Only",
]
dependencies = [
"selenium",
"webdriver-manager",
"pydantic",
"requests",
"pytest",
"pytest-asyncio",
"playwright",
"playwright-stealth",
"undetected_chromedriver",
"setuptools"
]
[project.urls]
"Homepage" = "https://www.sadcaptcha.com"
"Source" = "https://github.com/gbiz123/temu-captcha-solver/"