forked from scrapy-plugins/scrapy-zyte-smartproxy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
34 lines (33 loc) · 1.27 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
from setuptools import setup
setup(
name='scrapy-crawlera',
version='1.4.0',
license='BSD',
description='Crawlera middleware for Scrapy',
maintainer='Raul Gallegos',
maintainer_email='[email protected]',
author='Scrapinghub',
author_email='[email protected]',
url='https://github.com/scrapy-plugins/scrapy-crawlera',
packages=['scrapy_crawlera'],
platforms=['Any'],
classifiers=[
'Development Status :: 5 - Production/Stable',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Framework :: Scrapy',
'Intended Audience :: Developers',
'Topic :: Internet :: WWW/HTTP',
'Topic :: Internet :: Proxy Servers',
'Topic :: Software Development :: Libraries :: Application Frameworks',
'Topic :: Software Development :: Libraries :: Python Modules',
],
install_requires=['scrapy>=1.0.0', 'six', 'w3lib'],
)