-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
49 lines (42 loc) · 1.61 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
47
48
49
from setuptools import setup
__author__ = "Chetan Jain <[email protected]>"
install_requires = [
"chrome_extension_python",
]
extras_require = {}
def get_description():
try:
with open("README.md", encoding="utf-8") as readme_file:
long_description = readme_file.read()
return long_description
except:
return None
setup(
name="twocaptcha_extension_python",
version="1.0.1",
author="Chetan Jain",
author_email="[email protected]",
description="TwoCaptcha Extension Python allows you to easily integrate TwoCaptcha Extension in web automation frameworks like Botasaurus, Selenium, and Playwright.",
license="MIT",
keywords=["twocaptcha-extension-python"],
url="https://github.com/omkarcloud/twocaptcha-extension-python",
packages=["twocaptcha_extension_python"],
long_description_content_type="text/markdown",
long_description=get_description(),
python_requires=">=3.6",
classifiers=[
"Development Status :: 5 - Production/Stable",
"Topic :: Software Development :: Testing",
"Topic :: System :: Installation/Setup",
"Topic :: Software Development :: Libraries :: Python Modules",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
],
install_requires=install_requires,
extras_require=extras_require,
)