forked from jayzeng/scrapy-elasticsearch
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
21 lines (20 loc) · 1023 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
from distutils.core import setup
from setuptools import find_packages
setup(name='ScrapyElasticSearch',
version='0.6.1',
license='Apache License, Version 2.0',
description='Scrapy pipeline which allow you to store multiple scrapy items in Elastic Search.',
author='Michael Malocha, Julien Duponchelle',
author_email='[email protected], [email protected]',
url='https://github.com/knockrentals/scrapy-elasticsearch.git',
download_url = 'https://github.com/knockrentals/scrapy-elasticsearch/tarball/master',
keywords="scrapy elastic search",
packages = find_packages(),
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']
)