python3-anticaptcha/setup.py

33 lines
882 B
Python
Raw Normal View History

2017-10-11 18:36:36 +00:00
from setuptools import setup
setup(
name = 'python3-anticaptcha',
2019-01-10 22:06:30 +00:00
version = '1.2',
author = 'AndreiDrang, redV0ID',
packages = ['python3_anticaptcha'],
install_requires = [
'requests==2.21.0',
2019-01-10 22:06:30 +00:00
'aiohttp==3.5.3',
'pika==0.12.0'
],
2019-01-10 23:42:51 +00:00
description = 'Python 3 Anti-Captcha service library with AIO module.',
package_dir={'python3-anticaptcha': 'python3_anticaptcha'},
include_package_data=True,
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',
2019-01-10 23:42:51 +00:00
zip_safe=False
2017-10-11 18:36:36 +00:00
)