2017-10-11 18:36:36 +00:00
|
|
|
from setuptools import setup
|
|
|
|
|
|
|
|
setup(
|
2017-10-13 22:35:18 +00:00
|
|
|
name='python3-anticaptcha',
|
2017-10-11 18:36:36 +00:00
|
|
|
version='0.9.8.b',
|
|
|
|
author='AndreiDrang, redV0ID',
|
|
|
|
|
2017-10-13 22:35:18 +00:00
|
|
|
packages=['python3_anticaptcha'],
|
2017-10-11 18:36:36 +00:00
|
|
|
install_requires=[
|
|
|
|
'requests>=2.18',
|
|
|
|
],
|
|
|
|
description='Python 3 AntiCaptcha library.',
|
|
|
|
author_email='drang.andray@gmail.com',
|
|
|
|
license='MIT',
|
|
|
|
keywords='''captcha
|
|
|
|
anticaptcha
|
|
|
|
python3
|
|
|
|
flask
|
|
|
|
recaptcha
|
|
|
|
captcha
|
|
|
|
security
|
|
|
|
api
|
|
|
|
python-library
|
|
|
|
python-anticaptcha
|
|
|
|
rucaptcha-client''',
|
|
|
|
python_requires='>=3.3',
|
|
|
|
)
|