forked from rmax/scrapy-redis
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
23 lines (19 loc) · 674 Bytes
/
setup.py
File metadata and controls
23 lines (19 loc) · 674 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
import os
from setuptools import setup
LONG_DESC = open(os.path.join(os.path.dirname(__file__), 'README.rst')).read()
setup(name='scrapy-redis',
version='0.5.1',
description='Redis-based components for Scrapy',
long_description=LONG_DESC,
author='Rolando Espinoza La fuente',
author_email='darkrho@gmail.com',
url='http://github.com/darkrho/scrapy-redis',
packages=['scrapy_redis'],
license='BSD',
install_requires=['Scrapy>=0.14', 'redis>=2.4'],
classifiers=[
'Programming Language :: Python',
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
],
)