2017-10-11 18:36:36 +00:00
|
|
|
from setuptools import setup
|
|
|
|
|
|
|
|
setup(
|
2018-07-27 10:15:17 +00:00
|
|
|
name = 'python3-anticaptcha',
|
2018-11-01 15:51:18 +00:00
|
|
|
version = '1.0',
|
2018-07-27 10:15:17 +00:00
|
|
|
author = 'AndreiDrang, redV0ID',
|
|
|
|
|
|
|
|
packages = ['python3_anticaptcha'],
|
|
|
|
install_requires = [
|
2018-12-17 03:19:30 +00:00
|
|
|
'requests==2.21.0',
|
2018-11-01 15:51:18 +00:00
|
|
|
'aiohttp==3.4.4',
|
|
|
|
'pika==0.12.0'
|
2018-07-27 10:15:17 +00:00
|
|
|
],
|
2018-11-01 15:51:18 +00:00
|
|
|
description = 'Python 3 AntiCaptcha library with AIO module.',
|
2018-07-27 10:15:17 +00:00
|
|
|
url = 'https://github.com/AndreiDrang/python3-anticaptcha',
|
|
|
|
author_email = 'drang.andray@gmail.com',
|
|
|
|
license = 'MIT',
|
|
|
|
keywords = '''captcha
|
|
|
|
anticaptcha
|
|
|
|
python3
|
|
|
|
recaptcha
|
|
|
|
captcha
|
|
|
|
security
|
|
|
|
api
|
|
|
|
python-library
|
|
|
|
python-anticaptcha
|
|
|
|
anticaptcha-client''',
|
|
|
|
python_requires = '>=3.6',
|
2017-10-11 18:36:36 +00:00
|
|
|
)
|