-
Notifications
You must be signed in to change notification settings - Fork 118
/
setup.py
18 lines (18 loc) · 836 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
from distutils.core import setup
setup(name='ScrapyElasticSearch',
version='0.4',
license='Apache License, Version 2.0',
description='Scrapy pipeline which allow you to store scrapy items in Elastic Search.',
author='Julien Duponchelle',
author_email='[email protected]',
url='http://github.com/noplay/scrapy-elasticsearch',
keywords="scrapy elastic search",
py_modules=['scrapyelasticsearch'],
platforms = ['Any'],
install_requires = ['scrapy', 'pyes'],
classifiers = [ 'Development Status :: 4 - Beta',
'Environment :: No Input/Output (Daemon)',
'License :: OSI Approved :: Apache Software License',
'Operating System :: OS Independent',
'Programming Language :: Python']
)