python3-anticaptcha/setup.py

28 lines
559 B
Python
Raw Normal View History

2017-10-11 18:36:36 +00:00
from setuptools import setup
setup(
name='python3-anticaptcha',
version='0.6',
2017-10-11 18:36:36 +00:00
author='AndreiDrang, redV0ID',
packages=['python3_anticaptcha'],
2017-10-11 18:36:36 +00:00
install_requires=[
2017-10-25 21:22:38 +00:00
'requests>=2.18',
],
2017-10-11 18:36:36 +00:00
description='Python 3 AntiCaptcha library.',
url='https://github.com/AndreiDrang/python3-anticaptcha',
2017-10-11 18:36:36 +00:00
author_email='drang.andray@gmail.com',
license='MIT',
keywords='''captcha
anticaptcha
python3
recaptcha
captcha
security
api
python-library
python-anticaptcha
2017-10-25 21:22:38 +00:00
anticaptcha-client''',
2017-10-11 18:36:36 +00:00
python_requires='>=3.3',
)