forked from QIN2DIM/hcaptcha-challenger
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
46 lines (43 loc) · 1.79 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
38
39
40
41
42
43
44
45
46
import os
from setuptools import setup, find_packages
import hcaptcha_challenger
this_directory = os.path.abspath(os.path.dirname(__file__))
# pip install urllib3 -U
# python setup.py sdist bdist_wheel && python -m twine upload dist/*
setup(
name="hcaptcha-challenger",
version=hcaptcha_challenger.__version__,
keywords=["hcaptcha", "hcaptcha-challenger", "hcaptcha-challenger-python", "hcaptcha-solver"],
author="QIN2DIM",
author_email="[email protected]",
maintainer="QIN2DIM, Bingjie Yan",
maintainer_email="[email protected], [email protected]",
description="🥂 Gracefully face hCaptcha challenge with YOLOv6(ONNX) embedded solution.",
long_description=open(os.path.join(this_directory, "README.md")).read(),
long_description_content_type="text/markdown",
license="GNU General Public License v3.0",
url="https://github.com/QIN2DIM/hcaptcha-challenger",
packages=find_packages(include=["hcaptcha_challenger", "hcaptcha_challenger.*", "LICENSE"]),
install_requires=[
"loguru~=0.6.0",
"selenium~=4.4.3",
"aiohttp~=3.8.1",
"opencv-python~=4.5.5.62",
"undetected-chromedriver==3.1.5.post4",
"webdriver-manager==3.8.2",
"numpy>=1.21.5",
"requests>=2.28.1",
"pyyaml~=6.0",
],
extras_require={"dev": ["nox", "pytest"], "test": ["pytest"]},
python_requires=">=3.8",
classifiers=[
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Software Development",
"Topic :: Software Development :: Libraries",
"Topic :: Software Development :: Libraries :: Python Modules",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3",
],
)