2014-08-01 15:29:59 -03:00
|
|
|
from os.path import dirname, join
|
|
|
|
from setuptools import setup, find_packages
|
|
|
|
|
|
|
|
|
|
|
|
with open(join(dirname(__file__), 'scrapy/VERSION'), 'rb') as f:
|
|
|
|
version = f.read().decode('ascii').strip()
|
|
|
|
|
|
|
|
|
|
|
|
setup(
|
|
|
|
name='Scrapy',
|
|
|
|
version=version,
|
|
|
|
url='http://scrapy.org',
|
2015-04-25 11:20:20 -03:00
|
|
|
description='A high-level Web Crawling and Web Scraping framework',
|
2014-08-01 15:29:59 -03:00
|
|
|
long_description=open('README.rst').read(),
|
|
|
|
author='Scrapy developers',
|
|
|
|
maintainer='Pablo Hoffman',
|
|
|
|
maintainer_email='pablo@pablohoffman.com',
|
|
|
|
license='BSD',
|
2014-08-01 16:23:37 -03:00
|
|
|
packages=find_packages(exclude=('tests', 'tests.*')),
|
2014-08-01 15:29:59 -03:00
|
|
|
include_package_data=True,
|
2014-08-01 16:26:08 -03:00
|
|
|
zip_safe=False,
|
2014-08-01 15:29:59 -03:00
|
|
|
entry_points={
|
|
|
|
'console_scripts': ['scrapy = scrapy.cmdline:execute']
|
|
|
|
},
|
|
|
|
classifiers=[
|
2014-08-05 14:43:13 -03:00
|
|
|
'Framework :: Scrapy',
|
2009-09-17 11:22:48 -03:00
|
|
|
'Development Status :: 5 - Production/Stable',
|
|
|
|
'Environment :: Console',
|
2014-08-01 15:29:59 -03:00
|
|
|
'Intended Audience :: Developers',
|
|
|
|
'License :: OSI Approved :: BSD License',
|
|
|
|
'Operating System :: OS Independent',
|
|
|
|
'Programming Language :: Python',
|
|
|
|
'Programming Language :: Python :: 2',
|
|
|
|
'Programming Language :: Python :: 2.7',
|
2016-03-01 16:34:13 +05:00
|
|
|
'Programming Language :: Python :: 3',
|
|
|
|
'Programming Language :: Python :: 3.3',
|
|
|
|
'Programming Language :: Python :: 3.4',
|
|
|
|
'Programming Language :: Python :: 3.5',
|
2017-01-09 14:40:02 +01:00
|
|
|
'Programming Language :: Python :: 3.6',
|
2014-08-01 15:29:59 -03:00
|
|
|
'Topic :: Internet :: WWW/HTTP',
|
2009-09-17 11:22:48 -03:00
|
|
|
'Topic :: Software Development :: Libraries :: Application Frameworks',
|
|
|
|
'Topic :: Software Development :: Libraries :: Python Modules',
|
2014-08-01 15:29:59 -03:00
|
|
|
],
|
|
|
|
install_requires=[
|
2016-12-01 22:02:11 +00:00
|
|
|
'Twisted>=13.1.0',
|
2017-02-13 21:06:05 +05:00
|
|
|
'w3lib>=1.17.0',
|
2013-10-16 22:35:15 -02:00
|
|
|
'queuelib',
|
|
|
|
'lxml',
|
|
|
|
'pyOpenSSL',
|
|
|
|
'cssselect>=0.9',
|
2014-01-15 13:05:00 +06:00
|
|
|
'six>=1.5.2',
|
2017-02-02 17:47:22 +01:00
|
|
|
'parsel>=1.1',
|
2015-07-25 17:38:07 +02:00
|
|
|
'PyDispatcher>=2.0.5',
|
2015-08-11 20:14:22 +05:00
|
|
|
'service_identity',
|
2014-08-01 15:29:59 -03:00
|
|
|
],
|
|
|
|
)
|