forked from julien-duponchelle/scrapy-mongodb
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
18 lines (18 loc) · 818 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='ScrapyMongoDB',
version='0.2.1',
license='Apache License, Version 2.0',
description='Scrapy pipeline which allow you to store scrapy items in MongoDB database.',
author='Julien Duponchelle',
author_email='julien@duponchelle.info',
url='http://github.com/noplay/scrapy-mongodb',
keywords="scrapy mongodb",
py_modules=['scrapymongodb'],
platforms = ['Any'],
install_requires = ['scrapy', 'pymongo'],
classifiers = [ 'Development Status :: 4 - Beta',
'Environment :: No Input/Output (Daemon)',
'License :: OSI Approved :: Apache Software License',
'Operating System :: OS Independent',
'Programming Language :: Python']
)