python3-anticaptcha/setup.py

30 lines
759 B
Python
Raw Normal View History

2017-10-11 18:36:36 +00:00
from setuptools import setup
setup(
name = 'python3-anticaptcha',
version = '1.1',
author = 'AndreiDrang, redV0ID',
packages = ['python3_anticaptcha'],
install_requires = [
'requests==2.21.0',
'aiohttp==3.5.1',
'pika==0.12.0'
],
description = 'Python 3 AntiCaptcha library with AIO module.',
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
)