forked from owen9825/captcha-middleware
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
38 lines (37 loc) · 1.08 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
from setuptools import setup
setup(
name='captchaMiddleware',
version='1.0.0',
description='Check for a CAPTCHA test and try solving it',
long_description=open('README.rst').read(),
keywords='scrapy web-scraping captcha amazon ocr',
license='New BSD License',
author="Owen Miller",
author_email='[email protected]',
url='kokociel.com',
classifiers=[
'Development Status :: 5 - Production/Stable',
'Framework :: Scrapy',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Programming Language :: Python',
'Framework :: Scrapy',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Scientific/Engineering :: Image Recognition',
'Topic :: Internet :: WWW/HTTP',
],
packages=[
'captchaMiddleware',
],
install_requires=[
'pytesseract',
'numpy',
'scipy',
'scrapy',
'bs4',
'opencv-python',
'imutils'
],
test_suite='nose.collector',
tests_require=['nose']
)