unicaptcha 0.0.1__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
Metadata-Version: 2.5
|
|
2
|
+
Name: unicaptcha
|
|
3
|
+
Version: 0.0.1
|
|
4
|
+
Summary: Universal async/sync interface to multiple anti-captcha services (name reserved)
|
|
5
|
+
License-Expression: MIT
|
|
6
|
+
Classifier: Development Status :: 2 - Pre-Alpha
|
|
7
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
8
|
+
Classifier: Programming Language :: Python :: 3
|
|
9
|
+
Requires-Python: >=3.11
|
|
10
|
+
Description-Content-Type: text/markdown
|
|
11
|
+
|
|
12
|
+
# unicaptcha
|
|
13
|
+
|
|
14
|
+
Reserved package name. The `unicaptcha` project (universal async/sync
|
|
15
|
+
interface to multiple anti-captcha services) will publish its real releases
|
|
16
|
+
here. This placeholder exists only to reserve the name on PyPI.
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["hatchling"]
|
|
3
|
+
build-backend = "hatchling.build"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "unicaptcha"
|
|
7
|
+
version = "0.0.1"
|
|
8
|
+
description = "Universal async/sync interface to multiple anti-captcha services (name reserved)"
|
|
9
|
+
readme = "README.md"
|
|
10
|
+
license = "MIT"
|
|
11
|
+
requires-python = ">=3.11"
|
|
12
|
+
classifiers = [
|
|
13
|
+
"Development Status :: 2 - Pre-Alpha",
|
|
14
|
+
"Programming Language :: Python :: 3",
|
|
15
|
+
"License :: OSI Approved :: MIT License",
|
|
16
|
+
]
|
|
17
|
+
|
|
18
|
+
[tool.hatch.build.targets.wheel]
|
|
19
|
+
packages = ["unicaptcha"]
|