-
Notifications
You must be signed in to change notification settings - Fork 21
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·33 lines (32 loc) · 1.08 KB
/
setup.py
File metadata and controls
executable file
·33 lines (32 loc) · 1.08 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
from setuptools import setup
setup(
name='antigate',
version="1.4.0",
description='Easy wrapper for antigate.com/anti-captcha.com',
keywords="antigate captcha",
long_description=open('README.rst').read(),
author="GoTLiuM InSPiRiT",
author_email='gotlium@gmail.com',
url='http://github.com/gotlium/antigate',
packages=['antigate'],
include_package_data=True,
install_requires=[
'xmltodict',
'six',
],
zip_safe=False,
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: GNU General Public License (GPL)',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
],
)