forked from thicccat688/selenium-recaptcha-solver
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
22 lines (20 loc) · 747 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
from setuptools import setup, find_packages
setup(
name='selenium-recaptcha-solver',
version='1.9.0',
license='MIT',
author='Tomás Perestrelo',
author_email='[email protected]',
packages=find_packages(exclude=('tests*', 'testing*')),
url='https://github.com/thicccat688/selenium-recaptcha-solver',
download_url='https://pypi.org/project/selenium-recaptcha-solver',
keywords='python, captcha, speech recognition, selenium, web automation',
long_description=open('README.md', 'r').read(),
long_description_content_type='text/markdown',
install_requires=[
'selenium~=4.8.0',
'pydub~=0.25.1',
'SpeechRecognition~=3.8.1',
'requests>=2.28.1,<2.32.0',
],
)