1
0
mirror of https://github.com/scrapy/scrapy.git synced 2025-02-23 16:44:17 +00:00
scrapy/setup.py

47 lines
1.4 KiB
Python
Raw Normal View History

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',
description='A high-level Python Screen Scraping framework',
long_description=open('README.rst').read(),
author='Scrapy developers',
maintainer='Pablo Hoffman',
maintainer_email='pablo@pablohoffman.com',
license='BSD',
packages=find_packages(exclude=['tests']),
include_package_data=True,
entry_points={
'console_scripts': ['scrapy = scrapy.cmdline:execute']
},
classifiers=[
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',
'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=[
'Twisted>=10.0.0',
'w3lib>=1.2',
'queuelib',
'lxml',
'pyOpenSSL',
'cssselect>=0.9',
2014-01-15 13:05:00 +06:00
'six>=1.5.2',
2014-08-01 15:29:59 -03:00
],
)