-
Notifications
You must be signed in to change notification settings - Fork 5
/
setup.py
49 lines (46 loc) · 1.42 KB
/
setup.py
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
from setuptools import setup, find_packages
from io import open
PACKAGE_NAME = "captchatools"
VERSION = "1.5.0"
SHORT_DESCRIPTION = "Python module to help solve captchas with Capmonster, 2captcha and Anticaptcha API's!"
GITHUB_URL = "https://github.com/Matthew17-21/Captcha-Tools"
with open('README.md', 'r', encoding='utf-8') as fp:
README = fp.read()
setup(
name = PACKAGE_NAME,
author = 'Matthew17-21',
packages=find_packages(),
author_email = 'admin@monumentalshopping.com',
version=VERSION,
description = SHORT_DESCRIPTION,
long_description=README,
long_description_content_type='text/markdown',
url = GITHUB_URL,
license="MIT",
keywords = [
'captcha',
'2captcha',
'capmonster',
'anticaptcha',
'scraping',
'scrape',
'challenge',
"sneakers"
],
include_package_data = True,
install_requires = [
'requests',
],
classifiers=[
'Intended Audience :: Developers',
'Natural Language :: English',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Topic :: Internet :: WWW/HTTP',
'Topic :: Software Development :: Libraries :: Python Modules'
],
)